/* @import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&amp;subset=devanagari,latin-ext");
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"); */

 /* Global Styles */
        :root {
            --primary: #007cf0;
            --secondary: #00dfd8;
            --dark: #0a192f;
            --light: #f8f9fa;
            --gray: black;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:  Arial, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6!important;
        }

        .container {
            width: 100%!important;
            max-width: 1200px;
            margin: 0 auto!important;
          padding: 0 20px!important;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

         h2, h3, h4 {
            font-weight: 700!important;
            line-height: 1.2!important;
           
        
        }
        h1 {
            font-size: 3rem!important;
            margin-bottom: 20px;
            color: var(--primary);
            /* text-align: center; */
            /* position: relative; */
            font-weight: 700!important;
        }

        h2 {
            font-size: 2.5rem!important;
            margin-bottom: 20px;
            text-align: center;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            /* display: inline-block; */
        }
a {
    color: #e3f2fd;
}
      
        p {
            color: var(--gray);
            margin-bottom: 15px
        }

        .btn {
           /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px rgba(0, 124, 240, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 124, 240, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            margin-left: 15px;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 124, 240, 0.4);
        }


nav {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
  
}

.container {
  max-width: 1200px!important;
  margin: auto;
  padding: 0 1.5rem;
}

.menu-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  max-height: 50px;
}

.menu-wrap {
  display: flex;
  align-items: center;
  
}

.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item a {
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  /* color: #1a1a1a; */
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.menu-item a:hover {
  background: #e3f2fd;
  transform: rotateX(10deg) rotateY(10deg) scale(1.05);
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0f0f0;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border-color: #6c757d;
  transition: all 0.3s ease;
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  padding: 0.3rem;
  width: 150px;
}

.search-icon {
  color: #1d8cf8;
  cursor: pointer;
}

/* Menu Toggle - Mobile */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  background: #1a1a1a;
  border-radius: 5px;
  transition: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-wrap {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .menu-wrap.active {
    display: flex;
  }

  .menu {
    flex-direction: column;
    width: 100%;
  }

  .search-bar {
    margin-top: 1rem;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }
}


/* Headings */
.content-section h2 {
  color: var(--primary);
}

.content-section h4 {
  color: black;
}

/* Paragraphs */
.content-section p {
  color: #333; /* or var(--dark) for darker text */
  font-size: 1rem;
}

/* List Text */
.content-section ul li {
  color: #444;
  font-size: 1rem;
  margin-bottom: 10px!important;
}

/* Highlighted strong text inside list */
.content-section ul li strong {
  color: var(--primary);
  font-weight: 600;
}

/* Right Column */
.col-md-4 h5 {
  color: black;
  font-size: 1.1rem;
  font-weight: bold;
}

.col-md-4 p {
  color: var(--dark);
  font-size: 0.95rem;
}


/* Section Heading */
.list-section h4 {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

/* Paragraphs */
.list-section p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* Accordions */
.accordeon .block-text h5 {
  color: black;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.accordeon .accorderon-text h5 {
  color: var(--primary);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.accordeon .accorderon-text p {
  color: var(--dark);
  font-size: 0.95rem;
}

/* Icons */
.accordeon .fa-plus,
.accordeon .fa-angle-down {
  color: var(--primary);
}


