

:root {
    --primary-color: #ff6b2b;
    --primary-dark: #e65a1f;
    --dark-color: #1a1a1a;
    --light-color: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #888888;
    --card-bg: rgba(255, 255, 255, 0.05);
    --max-width: 1200px;
    --transition: all 0.3s ease;
    --gradient-1: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

svg {
    font-family: cursive;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
}

.wrapper {
    background-color: #1a1a1a;
	
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    overflow: hidden;
}

svg text {
  animation: stroke 5s 1 alternate;
  stroke-width: 2;
  stroke: #24bae4;
  font-size: 150px;
}

@keyframes stroke {
  0% {
      fill: transparent;
      stroke: var(--primary-color);
      stroke-dashoffset: 30%;
      stroke-dasharray: 0 40%;
      stroke-width: 0;
      opacity: 1;
  }

  70% {
      fill: transparent;
      stroke: var(--primary-color);
      opacity: 1;
  }

  80% {
      fill: transparent;
      stroke: var(--primary-color);
      stroke-width: 2;
      opacity: 1;
  }

  95% {

      fill: var(--primary-color);
      stroke: var(--primary-color);
      stroke-dashoffset: -21%;
      stroke-dasharray: 40% 0;
      stroke-width: 2;
      opacity: 0.8;

  }

  100% {
      stroke-width: 0;
      opacity: 0.2;
  }
}



body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-color);
    overflow-x: hidden;
    padding-top: 70px; 
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #f36b2b;
    transform: translateY(-5px);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark-color);
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    text-decoration: none;
}

.logo h1 {
    font-family: cursive;
    color: var(--primary-color);
    font-size: 3rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: calc(100% - 2rem);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li .btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.nav-links li .btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}

.nav-links li .btn-primary::after {
    display: none;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 2px 0;
    transition: var(--transition);
}


section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
}


.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/bcg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -70px; 
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}


.stats {
    background: var(--dark-color);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 43, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item .counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
}
.dashboard {
    padding: 5rem 2rem;
    background: var(--light-color);
}
.dashboard p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}
.dashboard-content {
    text-align: center;
    margin-bottom: 4rem;
}
.dashboard-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-grey);
}
.dashboard .dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}
.feature-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
}
.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.feature-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.feature-item p {
    color: var(--text-gray);
}
.dashboard .cta-button {
    margin-top: 2rem;
}



.contact {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 43, 0.1);
    border-radius: 5px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 107, 43, 0.2);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: fit-content;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 30px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid var(--text-light);
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: fit-content;
    cursor: pointer;
}

.secondary-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.secondary-button:hover {
    background: var(--text-light);
    color: var(--dark-color);
}

.secondary-button:hover i {
    transform: rotate(360deg);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}


footer {
    background: var(--dark-color);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 107, 43, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-light);
    background: rgba(255, 107, 43, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.footer-bottom a:hover {
    color: var(--text-light);
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.footer-bottom a:hover::after {
    width: 100%;
}
.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-direction: column;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 107, 43, 0.1);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-gray);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 107, 43, 0.2);
}

.newsletter-form .cta-button {
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
}


.none{
    display: none;
}
