*{
 margin: 0;
 padding: 0;  
 font-family: 'poppins', sans-serif;
 box-sizing: border-box;
}

body
{
    background: #080808;
    color: #ffff;
}

   .Flash-container {
        
            background-color: #000;
            color: #fff;
            height: 30%;
            width:50%;
            font-family: Arial, sans-serif;
            margin-top: 10%;
            margin-left: -200px;
           overflow: hidden;
        }

        .service-container {
            font-size: 2.5em;
            font-weight: bold;
            text-align: center;
            opacity: 0;
            animation: fadeInOut 6s infinite;
            position: absolute;
            width: 80%;
        }

        .service-container:nth-child(1) {
            animation-delay: 0s;
        }

        .service-container:nth-child(2) {
            animation-delay: 2s;
        }

        .service-container:nth-child(3) {
            animation-delay: 4s;
        }

        @keyframes fadeInOut {
            0% { opacity: 0; transform: translateY(20px); }
            10% { opacity: 1; transform: translateY(0); }
            33% { opacity: 1; transform: translateY(0); }
            43% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 0; }
        }

#header
{
    width: 100%;
    height: 100vh;
    background-image: url(PHOTO.jpg);
    background-size: cover;
    background-position: center;
    }
.CONTAINER
{
    padding: 10PX 10%;

}

NAV{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo{
    width: 140px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
color:#fff;
text-decoration: none;
font-size: 18px;
position: relative;
}

nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width:100%;
}

.header-text{
    margin-top: 15%;
    font-size: 30px;
    margin-left: 20px;
}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}

.header-text h1 span{
    font-size: 60; /* Responsive font size */
            font-size: 60 px;
            text-transform: Title;
            
            /* Create the gradient */
            background: linear-gradient(90deg, #ff00de, #00f2ff, #f2ff00, #ff00de);
            
            /* Set the background size to be larger than the text */
            background-size: 200% auto;
            
            /* Use background-clip to make the gradient only visible where the text is */
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            
            /* Animate the background position */
            animation: gradient-flow 4s linear infinite;
}

  /* The animation keyframes */
        @keyframes gradient-flow {
            to {
                background-position: 200% center;
            }
        }



/*------------ABOUT---------------*/
#about{
	margin-top:80px;
    padding: 80px 0;
    color: #ababab;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px; 
}
.about-col-2{
    flex-basis: 60%;
}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}

.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}

.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link:after{
width: 50%; 

}

.tab-contents ul li{
    list-style: none;
    margin: 14px 0;
}
.tab-contents ul li span{
    color: #b54969;
    font-size: 14px;
}

.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}

/*------------SERVICES---------------*/
#services{
    padding: 30px 0;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
    
}

.services-list div{
    background: #262626;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.services-list div:hover{
    background-color: #db0096;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/*------------OFFERS---------------*/
.myoffer {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #080808;
            color: #333;
        }

        /* --- Main Offer Section Styling --- */
        .offer-section {
            text-align: center;
            padding: 50px 20px;
            background-color: #080808;
        }

        .offer-section h1 {
            font-size: 2.5em;
            color: #fff;
            margin-bottom: 10px;
        }

        .offer-section p {
            font-size: 1.2em;
            color: #fff;
            margin-bottom: 40px;
        }
        
        /* --- Flashing Banner Styling --- */
        .flashing-banner {
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
            background-color: #000;
            color: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border: 2px solid #00c6ff;
            animation: border-pulse 2s infinite alternate;
            position: relative;
            overflow: hidden;
        }

        /* --- Background Animation --- */
        .flashing-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle, rgba(0, 198, 255, 0.2) 0%, transparent 70%),
                radial-gradient(circle, rgba(0, 198, 255, 0.2) 0%, transparent 70%);
            background-size: 200% 200%;
            background-position: top left, bottom right;
            animation: bg-move 10s infinite linear;
            z-index: 1;
        }
        
        /* --- Offer Text Styling --- */
        .flashing-banner-text {
            font-size: 2em;
            font-weight: bold;
            text-transform: uppercase;
            text-shadow: 0 0 10px #00c6ff;
            animation: text-flicker 1.5s infinite alternate;
            position: relative;
            z-index: 2;
        }

        /* --- Keyframe Animations --- */
        @keyframes border-pulse {
            from { border-color: #00c6ff; }
            to { border-color: #ff4500; }
        }

        @keyframes bg-move {
            0% { background-position: top left, bottom right; }
            100% { background-position: top right, bottom left; }
        }

        @keyframes text-flicker {
            0%, 100% {
                color: #fff;
                text-shadow: 0 0 10px #fff, 0 0 20px #00c6ff;
            }
            50% {
                color: #ff4500;
                text-shadow: none;
            }
        }

        /* --- Responsive Design --- */
        @media (max-width: 600px) {
            .offer-section h1 {
                font-size: 2em;
            }
            .offer-section p {
                font-size: 1em;
            }
            .flashing-banner {
                padding: 20px;
            }
            .flashing-banner-text {
                font-size: 1.5em;
            }
        }

/*------------CONTACT---------------*/

  .contactme {
            text-align: center;
            padding: 50px 20px;
            background-color: #080808;
			}

        .contactme h1 {
            font-size: 2.5em;
            color: #fff;
            margin-bottom: 10px;
        }

.contact-left{
       flex-basis: 35%;
    margin-left: 20px;
   
}
.contact-container {
            max-width: 1000px;
            width: 100%;
            background: rgba(26, 26, 26, 0.95);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #ffffff, #cccccc);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
        }

        .contact-header p {
            font-size: 1.2rem;
            color: #cccccc;
            margin-top: 10px;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media (min-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact-info {
            padding: 30px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border-left: 4px solid #00bcd4;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .info-item:hover {
            transform: translateX(5px);
            background: rgba(255, 255, 255, 0.1);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 188, 212, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
        }

        .info-content h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #00bcd4;
            margin-bottom: 5px;
        }

        .info-content p {
            font-size: 1rem;
            color: #ffffff;
            word-wrap: break-word;
        }

}
.contact-right{
    flex-basis: 60%;
}



 .neon-button {

            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #1a1a1a; /* Dark background to make neon pop */
            display: inline-block;
            padding: 12px 24px;
            margin-top: 15PX;
            font-size: 1.2em;
            color: #00ff7f; /* Bright green text */
            background-color: transparent;
            border: 2px solid #00ff7f; /* Bright green border */
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px #00ff7f, inset 0 0 10px #00ff7f; /* Green glow */
            animation: pulse-glow-green 2s infinite alternate;
        }

        /* Create a shining effect on hover */
        .neon-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }

        .neon-button:hover::before {
            left: 100%;
        }

        .neon-button:hover {
            background-color: #00ff7f; /* Solid green on hover */
            color: #1a1a1a; /* Dark text on green background */
            box-shadow: 0 0 20px #00ff7f, inset 0 0 20px #00ff7f;
            transform: scale(1.05);
        }

        /* Keyframes for the pulsing glow animation */
        @keyframes pulse-glow-green {
            from {
                box-shadow: 0 0 10px #00ff7f, inset 0 0 10px #00ff7f;
            }
            to {
                box-shadow: 0 0 20px #00ff7f, inset 0 0 20px #00ff7f, 0 0 40px #00ff7f;
            }
        }
    
    

.btn{
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    color: #28a745;
    border: 2px solid #28a745;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  

  .btn:hover {
    background-color: #4220bb; /* Background appears on hover */
    color: white;
  }

  .contact-right form{
    width: 80%;
  }
  form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
  }

  /*------------CSS FOR SMALL SCREEN---------------*/

  #msg{
    color: #61b752;
    margin-top: -1px;
    display: block;
  }
  
 .visitors-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #262626
    font-family: Arial, sans-serif;
    gap: 20px; /* Adds some space between the two parts */
	margin-left: -50px;
	margin-top:-30px
}

/* Styles for the visitor counter section on the left */
.left-part {
    display: flex;
    justify-content: flex-end; /* Aligns the counter to the right within its container */
    align-items: center;
    flex: 1; /* Allows this part to take up available space */
}

/* Styles for the QR code section on the right */
.right-part {
    display: flex;
    justify-content: flex-start; /* Aligns the QR code to the left within its container */
    align-items: center;
    flex: 1; /* Allows this part to take up available space */
}

#counter-box {
    width: 170px;
    height: 170px;
    background: #667eea;
    border-radius: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(102,126,234,0.5);
    user-select: none;
}

#count {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

#label {
    font-size: 0.7rem;
    margin-top: 4px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.QR {
    height: 200px; /* Use a specific height to control the size */
    width: auto; /* Maintains the aspect ratio */
}
  
	