


		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}

		@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

		body {
			font-family: 'Poppins', sans-serif;
			overflow-x: hidden;
		}

		.banner-container {
			position: relative;
			width: 100%;
			min-height: 500px;
			background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
			overflow: hidden;
		}

		/* Animated diagonal stripes - top left */
		.diagonal-stripes-left {
			position: absolute;
			top: -50px;
			left: -50px;
			width: 300px;
			height: 300px;
			opacity: 0.8;
		}

		.stripe {
			position: absolute;
			background: #c41e3a;
			transform: rotate(-45deg);
			animation: slideDown 3s ease-in-out infinite;
		}

		.stripe:nth-child(1) {
			width: 60px;
			height: 400px;
			left: 0;
			animation-delay: 0s;
		}

		.stripe:nth-child(2) {
			width: 40px;
			height: 400px;
			left: 80px;
			animation-delay: 0.3s;
		}

		.stripe:nth-child(3) {
			width: 50px;
			height: 400px;
			left: 140px;
			animation-delay: 0.6s;
		}

		/* Animated diagonal stripes - bottom right */
		.diagonal-stripes-right {
			position: absolute;
			bottom: -50px;
			right: -50px;
			width: 300px;
			height: 300px;
			opacity: 0.8;
		}

		.stripe-right {
			position: absolute;
			background: #c41e3a;
			transform: rotate(-45deg);
			animation: slideUp 3s ease-in-out infinite;
		}

		.stripe-right:nth-child(1) {
			width: 50px;
			height: 400px;
			right: 0;
			animation-delay: 0s;
		}

		.stripe-right:nth-child(2) {
			width: 40px;
			height: 400px;
			right: 70px;
			animation-delay: 0.3s;
		}

		.stripe-right:nth-child(3) {
			width: 60px;
			height: 400px;
			right: 130px;
			animation-delay: 0.6s;
		}

		/* Animated circular elements */
		.circle-animated {
			position: absolute;
			border-radius: 50%;
			animation: pulse 4s ease-in-out infinite;
		}

		/* .circle-1 {
			width: 200px;
			height: 200px;
			
			background: repeating-linear-gradient(0deg,
					#c41e3a 0px,
					#c41e3a 15px,
					white 15px,
					white 30px);
			bottom: 20%;
			left: 60%;
			animation-delay: 0s;
		} */

.circle-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* DON'T REMOVE THIS - it makes it a circle! */
    position: absolute;
    
    /* Option A: Just the logo */
    background-image: url('/images/circle.png');
    background-size: 100%; /* adjust size of logo */
    background-position: center;
    background-repeat: no-repeat;
    bottom: 20%;
    left: 60%;
    animation-delay: 0s;
}




		.circle-2 {
			width: 150px;
			height: 150px;
			background-image: url('/images/circle.png');
    background-size: 100%; /* adjust size of logo */
    background-position: center;
    background-repeat: no-repeat;
			top: 15%;
			right: 15%;
			animation-delay: 1s;
		}

		/* Main content wrapper */
		.content-wrapper {
			position: relative;
			z-index: 10;
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 20px;
			padding: 40px;
			max-width: 1400px;
			margin: 0 auto;
			align-items: center;
		}

		/* Left side content */
		.left-content {
			animation: slideInLeft 1s ease-out;
		}

		.logo {
			width: 250px;
			margin-bottom: 30px;
			animation: fadeIn 1.5s ease-in;
		}

		.logo img {
			width: 100%;
			height: auto;
		}

		.main-title {
			font-size: 4rem;
			font-weight: 900;
			color: #000;
			line-height: 1.1;
			margin-bottom: 30px;
			animation: slideInLeft 1s ease-out 0.3s backwards;
		}

		.subtitle {
			font-size: 1.1rem;
			color: #000;
			margin-bottom: 40px;
			animation: slideInLeft 1s ease-out 0.5s backwards;
		}

		/* Category boxes */
		.categories {
			display: flex;
			flex-direction: column;
			gap: 15px;
			animation: slideInLeft 1s ease-out 0.7s backwards;
		}

		.category-item {
			display: flex;
			align-items: center;
			background: linear-gradient(90deg, #dc2f45 0%, #dc2f45 100%);
			color: white;
			padding: 20px 30px;
			border-radius: 50px;
			font-size: 1.3rem;
			font-weight: 600;
			transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
			cursor: pointer;
			max-width: 600px;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
			position: relative;
			overflow: hidden;
		}

		.category-item::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 0;
			height: 100%;
			background: linear-gradient(90deg, #ff4757 0%, #ff6b7a 100%);
			transition: width 0.4s ease;
			z-index: 0;
		}

		.category-item:hover {
			transform: translateX(15px) scale(1.03);
			box-shadow: 0 8px 30px rgba(220, 47, 69, 0.4);
		}

		.category-item:hover::before {
			width: 100%;
		}

		.category-number {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 70px;
			height: 70px;
			background: #1a1a1a;
			border-radius: 50%;
			font-weight: 900;
			margin-right: 25px;
			font-size: 1.8rem;
			letter-spacing: -1px;
			flex-shrink: 0;
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
			position: relative;
			z-index: 1;
			transition: transform 0.3s ease;
		}

		.category-item:hover .category-number {
			transform: rotate(360deg);
		}

		.category-text {
			position: relative;
			z-index: 1;
		}

		.bottom-text {
			margin-top: 40px;
			font-size: 1.3rem;
			font-weight: 700;
			color: #c41e3a;
			line-height: 1.4;
			text-transform: uppercase;
			letter-spacing: 1px;
			animation: slideInLeft 1s ease-out 0.9s backwards;
		}

		/* Right side - Girl image */
		.right-content {
			position: relative;
			display: flex;
			justify-content: center;
			align-items: center;
			animation: slideInRight 1s ease-out;
			min-height: 500px;
		}

		.girl-image {
			max-width: 100%;
			height: auto;
			position: relative;
			z-index: 5;
			animation: float 3s ease-in-out infinite;
		}

		.girl-image img {
			width: 100%;
			height: auto;
			max-width: 700px;
			min-height: 500px;
			object-fit: contain;
		}

		/* Placeholder for when no image is provided */
		.image-placeholder {
			width: 100%;
			max-width: 700px;
			height: 500px;
			background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
			border-radius: 20px;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #999;
			font-size: 1.2rem;
			text-align: center;
			padding: 20px;
		}

		/* Animations */
		@keyframes slideDown {

			0%,
			100% {
				transform: translateY(0) rotate(-45deg);
			}

			50% {
				transform: translateY(20px) rotate(-45deg);
			}
		}

		@keyframes slideUp {

			0%,
			100% {
				transform: translateY(0) rotate(-45deg);
			}

			50% {
				transform: translateY(-20px) rotate(-45deg);
			}
		}

		@keyframes pulse {

			0%,
			100% {
				transform: scale(1);
				opacity: 0.6;
			}

			50% {
				transform: scale(1.1);
				opacity: 0.8;
			}
		}

		@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);
			}
		}

		@keyframes fadeIn {
			from {
				opacity: 0;
			}

			to {
				opacity: 1;
			}
		}

		@keyframes float {

			0%,
			100% {
				transform: translateY(0px);
			}

			50% {
				transform: translateY(-20px);
			}
		}

		/* Responsive Design */
		@media (max-width: 1024px) {
			.main-title {
				font-size: 3rem;
			}

			.circle-1 {
				width: 150px;
				height: 150px;
			}

			.circle-2 {
				width: 120px;
				height: 120px;
			}
		}

		@media (max-width: 768px) {
			.content-wrapper {
				grid-template-columns: 1fr;
				padding: 30px 20px;
				gap: 40px;
			}

			.main-title {
				font-size: 2.5rem;
			}

			.category-item {
				font-size: 1rem;
				padding: 12px 20px;
			}

			.bottom-text {
				font-size: 1.1rem;
			}

			.left-content {
				order: 1;
			}

			.right-content {
				order: 2;
			}

			.circle-1,
			.circle-2 {
				display: none;
			}

			.diagonal-stripes-left,
			.diagonal-stripes-right {
				opacity: 0.4;
			}
		}

		@media (max-width: 480px) {
			.main-title {
				font-size: 2rem;
			}

			.logo {
				width: 180px;
			}

			.category-item {
				font-size: 0.9rem;
				padding: 10px 15px;
			}

			.category-number {
				font-size: 1.2rem;
				margin-right: 15px;
			}

			.bottom-text {
				font-size: 1rem;
			}
		}

/* Category Slider Styles */
.category-slider-wrapper {
    position: relative;
    margin-bottom: 60px; /* Extra space for dots */
}

.category-slider-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c41e3a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 0;
    cursor: grab;
}

.slider-container:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.slider-track.dragging {
    transition: none;
}

.post-grid-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.post-grid-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
}

.post-grid-slide .post-thumb {
    overflow: hidden;
    border-radius: 8px;
    pointer-events: none;
}

.post-grid-slide .post-thumb img {
    transition: transform 0.4s ease;
    border-radius: 8px;
}

.post-grid-slide:hover .post-thumb img {
    transform: scale(1.1);
}

.post-grid-slide .cat-name {
    display: inline-block;
    color: #c41e3a;
    font-size: 0.75rem;
    font-weight: 600;
}

.post-grid-slide .post-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.4;
}

.post-grid-slide .post-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-grid-slide .post-title a:hover {
    color: #c41e3a;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 10px 0;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: #c41e3a;
    opacity: 0.7;
}

.slider-dot.active {
    background: #c41e3a;
    width: 30px;
    border-radius: 5px;
}

/* View More Button */
.btn-outline-primary {
    border: 2px solid #c41e3a;
    color: #c41e3a;
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #c41e3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}



/* New code  */

/* UPDATED CLASSES TO MATCH HTML FILE */

.signin-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 480px;
    padding: 20px;
    animation: fadeIn 0.8s ease-out;
}

.signin-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.signin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c41e3a 0%, #ff6b7a 100%);
}

.form-groupsigin {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-inputsigin {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-inputsigin:focus {
    outline: none;
    border-color: #c41e3a;
    background: white;
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.form-inputsigin-icon {
    position: relative;
}

.form-inputsigin-icon i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
}

.password-toggle {
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #c41e3a;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #666;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c41e3a;
}

.forgot-password {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #a01828;
}

.signin-buttonsigin {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #dc2f45 0%, #c41e3a 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.signin-buttonsigin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
    background: linear-gradient(90deg, #c41e3a 0%, #dc2f45 100%);
}

.signin-buttonsigin:active {
    transform: translateY(0);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #999;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider span {
    padding: 0 15px;
}

.social-signin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-button:hover {
    border-color: #c41e3a;
    color: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-button i {
    font-size: 1.2rem;
}

.signup-link {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.signup-link a {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #a01828;
    text-decoration: underline;
}

/* Additional styles for logo and titles if needed */
.logosigin {
    text-align: center;
    margin-bottom: 30px;
}

.logosigin img {
    max-width: 80px;
    height: auto;
}

.main-titlesigin {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.subtitlesigin {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 35px;
}
.signin-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}


/* Responsive adjustments for slider */
@media (max-width: 1024px) {
    .post-grid-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .post-grid-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .slider-track {
        gap: 15px;
    }
    
    .category-slider-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .post-grid-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .slider-track {
        gap: 10px;
    }
    
    .post-grid-slide {
        padding: 12px;
    }
    
    .post-grid-slide .post-title {
        font-size: 1rem;
    }
}




/* ===================================
   CATEGORY DROPDOWN HEADER STYLES
   =================================== */

/* Dropdown container */
.dropdowncategoryheader {
  position: relative;
}

/* Dropdown toggle link */
.dropdowncategoryheader-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

/* Dropdown icon */
.dropdowncategoryheader-icon {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate icon on hover */
.dropdowncategoryheader:hover .dropdowncategoryheader-icon {
  transform: rotate(180deg);
}

/* Dropdown menu container */
.dropdowncategoryheader-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.43, 0.26, 0.11, 0.99);
  z-index: 1000;
  border-top: 3px solid #c41e3a;
}

/* Show dropdown on hover */
.dropdowncategoryheader:hover .dropdowncategoryheader-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Individual dropdown items */
.dropdowncategoryheader-item {
  display: flex;
  align-items: center;
  padding: 14px 25px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Item icon */
.dropdowncategoryheader-item-icon {
  font-size: 16px;
  margin-right: 12px;
  color: #c41e3a;
  transition: all 0.3s ease;
}

/* Hover effect for items */
.dropdowncategoryheader-item:hover {
  background: linear-gradient(to right, #c41e3a, #B70B14);
  color: #fff;
  padding-left: 30px;
  transform: translateX(5px);
}

.dropdowncategoryheader-item:hover .dropdowncategoryheader-item-icon {
  color: #fff;
  transform: scale(1.2);
}

/* Add subtle separator between items */
.dropdowncategoryheader-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Before pseudo element for slide effect */
.dropdowncategoryheader-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #c41e3a;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.dropdowncategoryheader-item:hover::before {
  transform: scaleY(1);
}

/* Mobile responsive styles */
@media (max-width: 991px) {
  .dropdowncategoryheader-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: #f5f5f5;
    margin-top: 10px;
    border-radius: 4px;
    border-top: 2px solid #c41e3a;
  }

  .dropdowncategoryheader-item {
    padding: 12px 20px;
  }

  .dropdowncategoryheader-item:hover {
    padding-left: 25px;
  }

  .dropdowncategoryheader-icon {
    display: none;
  }
}

@media (max-width: 767px) {
  .dropdowncategoryheader-menu {
    margin-top: 5px;
  }
}