* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     -blue: #60a5fa;
     --indigo: #8b5cf6;
     --red: #ef4444;
     --dark-red: #7f1d1d;
     --orange: #f59e0b;
     --deep-orange: #78350f;
     --green: #10b981;
     --teal-dark: #064e3b;
     --teal: #065f46;
     --gray-border: #334155;
     --gray-dark: black;
     --gray-deeper: #1e293b;
     --gray-darker: #0f172a;
     --slate-900: #0f0f0f;
     --slate-800: #1c1c1c;
     --primary: #f3f03d;
     --secondary: #4ecdc4;
     --accent: #45b7d1;
     --gold: #ffd93d;
     --dark: #0a0a0a;
     --darker: #000000;
     --gray: #1a1a1a;
     --light-gray: #333333;
     --white: #ffffff;
     --text-light: #e0e0e0;
     --gradient-primary: linear-gradient(135deg, #e60b0b, #3342ec);
     --gradient-secondary: linear-gradient(135deg, #45b7d1, #ffd93d);
     --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a, #000000);
     --gradient-anni1: linear-gradient(135deg, #e60b0b, #de4040, #e89595);
     --gradient-anni2: linear-gradient(135deg, #3342ec, #5c68ec, #9299ec);
     --gradient-anni3: linear-gradient(135deg, #b105b1, #b227b2, #c168c1);
     --gradient-anni4: linear-gradient(135deg, #fed01a, #fddb56, #feea99);

 }

 body {
     font-family: 'Inter', 'Segoe UI', sans-serif;
     background: var(--darker);
     color: var(--white);
     overflow-x: hidden;
     line-height: 1.6;
     padding-top: 80px;
 }

 /* Demo content styles */
 .demo-content {
     padding: 2rem;
     text-align: center;
 }

 .demo-content h1 {
     font-size: 2rem;
     margin-bottom: 1rem;
     color: var(--white);
 }

 .demo-content p {
     color: var(--text-light);
     font-size: 1.1rem;
 }

 .main {
     display: flex;
     flex-direction: row;
     min-height: calc(100vh - 80px);
     /* Adjust for header */
     background-color: var(--darker);
 }

 .main1 {
     background-color: rgb(247, 236, 236);
     width: 40%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 2rem;
     color: #000000;
 }

 .main2 {
     width: 60%;
     position: relative;
     overflow: hidden;
 }

 .main2 img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     position: absolute;
     top: 0;
     left: 0;
 }

 .content {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 2rem;
     z-index: 1;
     background: rgba(0, 0, 0, 0.5);
     /* Semi-transparent overlay for better readability */
 }

 .content1 {
     width: 100%;
     max-width: 600px;
     color: white;
 }

 h2 {
     text-shadow: 0px 0px 2px whitesmoke;
     margin-bottom: 1rem;
     font-size: 2rem;
 }

 input[type="checkbox"] {
     width: 20px;
     height: 20px;
     background-color: black;
 }

 .name {
     display: flex;
     gap: 1rem;
     margin-bottom: 1rem;
 }

 .name input,
 .mail input,
 textarea {
     opacity: 0.8;
     box-shadow: 0px 0px 2px whitesmoke;
     width: 100%;
     padding: 1rem;
     border-radius: 2px;
     background-color: black;
     color: white;
     font-size: 1rem;
     border: none;
 }

 .mail {
     margin-bottom: 1rem;
 }

 textarea {
     height: 10rem;
     margin-bottom: 1rem;
 }

 button {
     border-radius: 10px;
     padding: 0.75rem 1.5rem;
     background-color: rgb(253, 68, 1);
     color: white;
     border: none;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 button:hover {
     background-color: rgb(255, 237, 237);
     color: black;
 }

 .check {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1rem;
 }

 .section {
     display: flex;
     padding: 3rem;
     color: #000000;
 }

 .heading {
     padding-left: 15px;
 }

 .smbox {
     position: relative;
     font-size: 26px;
     margin-bottom: 1rem;
 }

 .rectangle {
     opacity: 0.1;
     position: absolute;
     z-index: 0;
     width: 60px;
     height: 40px;
     background-color: rgb(186, 2, 2);
 }

 input::placeholder,
 textarea::placeholder {
     color: #ccc;
     opacity: 0.8;
 }

 .box {
     opacity: 0.9;
     color: black;
     position: relative;
     z-index: 1;
     width: 100%;
     max-width: 450px;
     background-color: rgb(202, 200, 200);
     border-bottom: 8px solid #e60b0b;
     padding: 2rem;
 }

 h1 {
     font-size: 3rem;
     margin-bottom: 1rem;
 }

 .p1 {
     font-size: 1.25rem;
     margin-bottom: 1rem;
     text-align: justify;
 }

 .p2 {
     font-size: 1rem;
 }

 /* Responsive Styles */

 @media (max-width: 768px) {
     .main {
         flex-direction: column;
     }

     .main1,
     .main2 {
         width: 100%;
         min-height: auto;
     }

     .main1 {
         padding: 2rem 1rem;
     }

     .main2 {
         height: auto;
         padding-top: 56.25%;
         /* 16:9 aspect ratio for image */
         position: relative;
     }

     .main2 img {
         height: auto;
     }

     .content {
         padding: 1rem;
         position: relative;
         background: none;
     }

     .content1 {
         color: var(--text-light);
     }

     .name {
         flex-direction: column;
         gap: 0.5rem;
     }

     h2 {
         font-size: 1.5rem;
     }

     input,
     textarea {
         font-size: 0.9rem;
     }

     .box {
         margin: 0;
     }

     h1 {
         font-size: 2rem;
     }

     .p1 {
         font-size: 1rem;
     }

     .p2 {
         font-size: 0.875rem;
     }

     .check {
         font-size: 0.875rem;
     }

     button {
         width: 100%;
         margin-top: 1rem;
     }
 }

 @media (max-width: 480px) {
     .logo-icon {
         width: 40px;
         height: 40px;
     }

     .mobile-menu {
         width: 90%;
     }

     h2 {
         font-size: 1.25rem;
     }

     input,
     textarea {
         font-size: 0.875rem;
         padding: 0.75rem;
     }

     button {
         padding: 0.5rem 1rem;
     }
 }

 .header1 {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: rgba(10, 10, 10, 0.9);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(255, 107, 107, 0.2);
     z-index: 1000;
     transition: all 0.0s ease;
     animation: slideDown 0.8s ease 0.2s forwards;
     opacity: 0;
 }

 .header1:hover {
     background: rgba(10, 10, 10, 1);
     box-shadow: 0 8px 32px rgba(255, 107, 107, 0.2);
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 20px;
     max-width: 1400px;
     margin: 0 auto;
 }

 .logo {
     cursor: pointer;
     transition: transform 0.3s ease;
     animation: logoFloat 3s ease-in-out infinite 2.5s;
 }

 .logo:hover {
     transform: scale(1.1);
 }

 .logo-icon {
     width: 50px;
     height: 50px;
     background: var(--gradient-primary);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
 }

 .logo-icon::before {
     content: '';
     position: absolute;
     width: 20px;
     height: 20px;
     background: var(--white);
     border-radius: 50%;
     top: 8px;
     left: 8px;
     animation: orb1 4s ease-in-out infinite 2.5s;
 }

 .logo-icon::after {
     content: '';
     position: absolute;
     width: 15px;
     height: 15px;
     background: var(--gradient-secondary);
     border-radius: 50%;
     bottom: 10px;
     right: 10px;
     animation: orb2 4s ease-in-out infinite 2.5s;
 }

 @keyframes logoFloat {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-5px);
     }
 }

 @keyframes orb1 {

     0%,
     100% {
         transform: scale(1) translate(0, 0);
     }

     50% {
         transform: scale(1.2) translate(5px, 5px);
     }
 }

 @keyframes orb2 {

     0%,
     100% {
         transform: scale(1) translate(0, 0);
     }

     50% {
         transform: scale(0.8) translate(-3px, -3px);
     }
 }

 /* Navigation Styles */
 .nav-content {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .nav-menu {
     display: flex;
     list-style: none;
     gap: 1.5rem;
     align-items: center;
 }

 .nav-link {
     text-decoration: none;
     color: var(--text-light);
     font-weight: 500;
     padding: 5px 10px;
     border-radius: 3px;
     transition: all 0.3s ease;
     position: relative;

 }

 .nav-link:hover {
     color: var(--white);
     transform: translateY(-2px) rotate(5deg);
     border-bottom: 1px solid white;
 }

 .profile-btn {
     background: var(--gradient-primary);
     color: var(--white);
     border: none;
     padding: 0.7rem 1.5rem;
     border-radius: 25px;
     cursor: pointer;
     font-weight: 600;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .profile-btn a {
     text-decoration: none;
     color: rgb(255, 255, 255);
 }

 .profile-btn:hover {
     transform: translateY(-2px) scale(1.1);
     box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
 }

 .dropdown-arrow {
     transition: transform 0.4s ease;
     font-size: 1.2rem;
 }

 .profile-dropdown:hover .dropdown-arrow {
     transform: rotate(180deg) scale(1.2);
 }

 .dropdown-menu {
     position: absolute;
     top: 120%;
     right: 1%;
     background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.9));
     border: 2px solid rgba(233, 69, 96, 0.3);
     border-radius: 20px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
     padding: 5px;
     min-width: 200px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-15px) scale(0.9);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .profile-dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0) scale(1);
 }

 .dropdown-item {
     padding: 10px;
     border-radius: 12px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 8px;
     color: #e2e8f0;
     font-weight: 500;
     margin-bottom: 5px;
     border: 2px solid transparent;
     text-decoration: none;
 }

 .dropdown-item:hover {
     background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(83, 52, 131, 0.1));
     color: #ffffff;
     transform: translateX(8px) scale(1.02);
     border-color: rgba(233, 69, 96, 0.3);
     box-shadow: 0 4px 15px rgba(233, 69, 96, 0.2);
 }

 .dropdown-item a {
     text-decoration: none;
     color: white;
 }

 /* Hamburger Menu Styles */
 .hamburger {
     display: none;
     cursor: pointer;
     font-size: 35px;
     position: relative;
     z-index: 1001;
     transition: all 0.3s ease;
 }

 .hamburger span {
     display: block;
     position: absolute;
     height: 3px;
     width: 100%;
     background: var(--white);
     border-radius: 3px;
     opacity: 1;
     left: 0;
     transform: rotate(0deg);
     transition: .25s ease-in-out;
 }

 .hamburger span:nth-child(1) {
     top: 0px;
     transform-origin: left center;
 }

 .hamburger span:nth-child(2) {
     top: 10px;
     transform-origin: left center;
 }

 .hamburger span:nth-child(3) {
     top: 20px;
     transform-origin: left center;
 }

 .hamburger.open span:nth-child(1) {
     transform: rotate(45deg);
     top: -1px;
     left: 4px;
 }

 .hamburger.open span:nth-child(2) {
     width: 0%;
     opacity: 0;
 }

 .hamburger.open span:nth-child(3) {
     transform: rotate(-45deg);
     top: 21px;
     left: 4px;
 }

 .close-menu {
     font-size: 40px;
     color: var(--white);
     cursor: pointer;
 }

 .close-menu:hover {
     color: var(--gradient-primary);
     transform: rotate(90deg);
 }

 .mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 80%;
     max-width: 350px;
     height: 100vh;
     background: rgba(10, 10, 10, 0.95);
     backdrop-filter: blur(20px);
     padding: 80px 30px 30px;
     transition: right 0.3s ease-in-out;
     z-index: 1001;
     overflow-y: auto;
 }

 .mobile-menu.active {
     right: 0;
 }

 .mobile-menu .nav-menu {
     flex-direction: column;
     gap: 1.5rem;
     align-items: flex-start;
 }

 .mobile-menu .nav-link {
     font-size: 1.2rem;
     padding: 10px 15px;
     display: block;
     width: 100%;
 }

 .mobile-menu .profile-btn {
     width: 100%;
     justify-content: center;
     margin-top: 1rem;
 }

 .overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     z-index: 999;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .overlay.active {
     opacity: 1;
     visibility: visible;
 }

 /* Animation Keyframes */
 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes slideUpFade {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes marquee {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* Responsive Styles */
 @media (max-width: 992px) {
     .navbar .nav-menu {
         display: none;
     }

     .mobile-menu .nav-menu {
         display: flex;
     }

     .hamburger {
         display: block;
     }

     .nav-content {
         gap: 10px;
     }

     .profile-dropdown {
         display: block;
     }

     .profile-btn {
         padding: 0.5rem 1rem;
         font-size: 1rem;
     }

     .hero-title {
         font-size: clamp(2.5rem, 8vw, 4rem);
     }

     .features-grid,
     .benefits-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .hero {
         padding-top: 70px;
     }

     .hero-content {
         padding: 1rem;
     }

     .hero-comm {
         flex-direction: column;
         align-items: center;
     }

     .hero-comm1,
     .learnmore {
         width: 100%;
         max-width: 250px;
         text-align: center;
     }

     .features,
     .testimonials,
     .benefits {
         padding: 3rem 1rem;
     }

     .feature-card,
     .benefit-card {
         padding: 1.5rem;
     }

     .testimonial-card {
         width: 250px;
     }
 }

 @media (max-width: 480px) {
     .navbar {
         padding: 10px 15px;
     }

     .logo-icon {
         width: 40px;
         height: 40px;
     }

     .mobile-menu {
         width: 85%;
     }

     .profile-btn {
         padding: 0.4rem 0.8rem;
         font-size: 0.9rem;
     }

     .hero-title {
         font-size: 2.5rem;
     }

     .feature-icon {
         width: 50px;
         height: 50px;
         font-size: 1.2rem;
     }

     .feature-title,
     .benefit-title {
         font-size: 1.3rem;
     }
 }

 footer {
     background: var(--gradient-dark);
     padding: 3rem 2rem;
     color: var(--text-light);
     font-size: 0.9rem;
     border-top: 1px solid rgba(255, 107, 107, 0.2);
     margin-top: 3rem;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .footer-section {
     flex: 1;
     min-width: 200px;
 }

 .footer-section h4 {
     font-size: 1.2rem;
     margin-bottom: 1rem;
     border-radius: 20px;
     color: red;
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 0.5rem;
 }

 .footer-links a {
     color: var(--text-light);
     text-decoration: none;
     transition: color 0.3s, transform 0.3s;
 }

 .footer-links a:hover {
     color: var(--white);
     transform: translateX(5px);
 }

 .social-links {
     display: flex;
     gap: 1rem;
 }

 .social-link {
     display: inline-block;
     width: 32px;
     height: 32px;
     transition: transform 0.3s;
 }

 .social-link:hover {
     transform: scale(1.1);
 }

 .social-link svg {
     fill: var(--text-light);
     width: 100%;
     height: 100%;
     transition: fill 0.3s;
 }

 .social-link:hover svg {
     fill: var(--white);
 }

 .newsletter-form {
     display: flex;
     margin-top: 1rem;
 }

 .newsletter-input {
     background: var(--light-gray);
     border: 1px solid rgba(255, 107, 107, 0.2);
     padding: 0.5rem;
     border-radius: 4px 0 0 4px;
     color: var(--white);
     flex: 1;
 }

 .newsletter-btn {
     background: var(--gradient-primary);
     border: none;
     padding: 0.5rem 1rem;
     border-radius: 0 4px 4px 0;
     color: var(--white);
     cursor: pointer;
     transition: transform 0.3s;
 }

 .newsletter-btn:hover {
     transform: scale(1.05);
 }

 .copyright {
     text-align: center;
     margin-top: 2rem;
     padding-top: 1rem;
     border-top: 1px solid rgba(255, 107, 107, 0.1);
 }

 /* Added: Responsive Footer */
 @media (max-width: 768px) {
     .footer-container {
         flex-direction: column;
         gap: 1.5rem;
     }

     .footer-section {
         text-align: center;
     }

     .social-links {
         justify-content: center;
     }
 }