:root {
    --primary: #5b21b6;
    --primary-hover: #5b21b6;
    --background: #ffffff;
    --text: #1f2937;
    --text-light: #6b7280;
    --border: #e5e7eb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0px;
    
}

.navbar {
    margin-top: -21px;
    padding-top: 0;
    border-top: 0;
    padding: 10px 15px;
}

body {
    margin: 0;
    padding: 0;
}
.nav-link{
    margin-top: 20px;
}

/* Selection ka background color black aur text color white set karne ke liye */
::selection {
    background-color: #ececec;
    color: rgb(0, 0, 0);
    
  }
  ::-moz-selection {
    background-color: black;
    color: white;
    
  }
  
  @font-face {
    font-family: 'Gagalin'; 
    src: url('./font/Gagalin-Regular.otf') format('truetype');

    
  }

  @font-face {
    font-family: 'Cheque';
    src: url(./font/Cheque-Regular.otf) format('truetype');
  } 

.Red-black{
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    /* color: transparent;
    -webkit-text-stroke: 0.2px rgb(211, 211, 211); */
    background: linear-gradient(90deg, #000000, #fff, #000);
    /* background: linear-gradient(90deg, #ff5100, #ff0000, #790389 ); */
    background-size: 80% 100%;
    background-repeat: repeat;
    background-clip: text;
    -webkit-background-clip: text;
    animation: Red-black 10s infinite;
    font-size: 18px;
    }

    @keyframes Red-black{
        0% {
            background-position: -500% 0;
        }
        100% {
            background-position: 500% 0;
        }
    }

/* h1{
    font-family: 'gagalin';
} */

/*flot*/
/* .flot {
    animation: float 3s ease-in-out infinite;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
} */


/*flot end*/

/*new animation*/



body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    /* cursor: url('./assets/cursor/Normal.cur') 20 20, auto; */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    /* box-shadow: 10px 10px 10px #d1d1d1;
    border-radius: 10px; */
    
}

.container ul {
    list-style-type: disc; /* Adds bullet points */
    padding: 0px 40px 10px 40px; /* Adds space for the bullet points */
    margin: 0; /* Removes default margin */
  }

  .container ul li {
    margin-bottom: 10px; /* Adds space between list items */
  }



/* Header Styles */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text);
    text-decoration: none;
} */

    .logo {
        
        font-size: 2rem;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.1);
        background: linear-gradient(90deg, #000000, #fff, #000);
        background-size: 80% 100%;
        background-repeat: repeat;
        background-clip: text;
        -webkit-background-clip: text;
        animation: logo 5s infinite;
    }

    @keyframes logo {
        0% {
            background-position: -500% 0;
        }
        100% {
            background-position: 500% 0;
        }
    }


/* nav a {
    margin-left: 20px;
    color: var(--text);
    text-decoration: none;
} */

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;

    padding: 15px 30px;
    font-size: 18px;
    /* color: #fff;
    background-color: #e74c3c; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    animation: btn-primary 2s infinite;
        
}
@keyframes btn-primary {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgb(91, 33, 182);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}




.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Hero Section Styles */
.hero-section {
    padding: 50px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-color: #f3e8ff;
    border-radius: 50%;
}

.hero-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.circle-1 {
    /* top: 0px; */
    left: 0px;
    width: 200px;
    height: 200px;
    background: #ff9d00;
filter: blur(51px);
}

.circle-2 {
    bottom: 200px;
    right: 40px;
    width: 60px;
    height: 00px;
    background-color: #ffe100;
    
}

.circle-3 {
    top: 40px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: #ef4444;
}

/* Features Section Styles */
.features-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #f3e8ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   
}

summary {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
}

details p {
    padding: 0 20px 20px;
    color: var(--text-light);
    
}

/* News Section Styles */
.news-section {
    padding: 80px 0;
}

.news-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-content p {
    color: var(--text-light);
}

/* Footer Styles */
footer {
    background-color: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
#h3{
    color: black;
    font-size: 18px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-info p {
    color: #9ca3af;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Custom Cursor */
#custom-cursor {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease;
}

.menu{
    display: none;
}






/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content,
    .about-content {
        flex-direction: column;
    }
    /* nav{
        display: none;
    } */
    .btn btn-primary{
        display: none;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
    }
    #custom-cursor{
        display: none;

    }
    .container ul {
        /* list-style-type: disc; Adds bullet points */
        padding: 0px 40px 10px 40px; /* Adds space for the bullet points */
        margin: 0; /* Removes default margin */
      }
    
      .container ul li {
        margin-bottom: 10px; /* Adds space between list items */
      }
      .header-buttons{
        display: none;
      }
      .menu{
        display: block;
        padding: 5px 10px 5px 10px;
        background-color: rgb(255, 255, 255);
        border-radius: 4px;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;

      }

      .about-text h2 {
        font-size: 28px;
        background: linear-gradient(45deg, #484848, #b9b6b6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

      
    
      



























    }