:root {
    --primary-color: #2196f3;
    --primary-glow: rgba(33, 150, 243, 0.8);
    --secondary-color: #9c27b0;
    --text-color: #ffffff;
    --bg-color: #0a0a12;
    --nav-bg: rgba(16, 16, 26, 0.7);
    --dropdown-bg: rgba(20, 20, 35, 0.8);
    --hover-color: #3f51b5;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --neon-glow: 0 0 10px rgba(33, 150, 243, 0.5),
                 0 0 20px rgba(33, 150, 243, 0.3),
                 0 0 30px rgba(33, 150, 243, 0.1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-bg: linear-gradient(135deg, var(--bg-color), #0a0a14);
    --glass-effect: saturate(180%) blur(10px);
    --border-radius: 12px;
    --text-description: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
  font-family: "Dosis", sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  letter-spacing: 1px;
  font-style: normal;
      /* font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal; */
  box-sizing: border-box;
}


/* type js style  */
.typeJsWrapper {
  padding: 50px;
}
.typeJsWrapper .typeJsText {
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 48px;
  display: inline-block;
  padding: 0;
  border-right: 1px solid #fffdfd;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-bg);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
  
}

/* Header and Navbar */
.header {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;

  
}

/* Logo */
.logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow);
    position: relative;
    display: inline-block;
    transition: var(--transition-medium);
    height: 20%;
    width: 20%;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 15px var(--primary-glow),
                 0 0 30px var(--primary-glow);
}

.logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -4px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
    box-shadow: var(--neon-glow);
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: var(--neon-glow);
}

/* Icons */
.icon {
    transition: var(--transition-medium);
    vertical-align: middle;
}

.chevron-icon {
    transition: transform var(--transition-medium);
}

.has-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.hidden {
    display: none;
}

/* Dropdown Menus */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--dropdown-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all var(--transition-medium);
    box-shadow: 0 10px 30px var(--shadow-color);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--dropdown-bg);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.7rem 1rem;
    display: block;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    margin-bottom: 2px;
}

.dropdown a:hover {
    background: rgba(33, 150, 243, 0.15);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Search Bar */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    width: 180px;
    transition: all var(--transition-medium);
    font-size: 0.9rem;
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    width: 240px;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.3);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 5px;
    transition: var(--transition-fast);
}

.search-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    padding: 0.6rem;
    font-size: 1.2rem;
    transition: all var(--transition-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(15deg);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.6rem;
    transition: var(--transition-medium);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: all var(--transition-medium);
    border-radius: 10px;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
    width: 70%;
}

.hamburger span:last-child {
    top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-active .hamburger span:last-child {
    transform: rotate(-45deg);
    top: 9px;
}

/* Content Styling */
.content {
    margin-top: 25px;
    padding: 2rem;
    
}

.hero1 {
    
    padding: 2rem;
    padding-top: 6%;
}

.img-ins{
    height: 100%;
    width: 100%;
    border-radius: 20% 0px 20% 0;
}
.hero1 h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-style: initial;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}
.course-logo{
    padding-left: 45%;
    padding-bottom: 50px;
    padding-top: -20px;
}


@media screen and (max-width:768px) {
  .course-section {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 70px;
  padding-bottom: 30px;
}
.avatars{
    padding-bottom: 10px;
}
}

.wlcome::first-letter{
 font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 50px;
  font-style: normal;
}
.course-section {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 70px;
}

.explore-btn {
  background-color: #fdd85d;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background-color: #ffcc33;
}

.avatars {
  display: flex;
}

.avatar {
    
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -10px;
  transition: transform 0.3s;
  background-color: #fff;
}

.avatar:first-child {
  margin-left: 0;
}


.hero1 p {
   font-size: 15px;
    max-width: 600px;
    margin-bottom: 2rem;
    color:#ffff;
    font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
    word-spacing: 5px;

}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
}

.section {
    padding: 5rem 5rem;
     background:  linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/backbround-lines.jpg);
  background-size: cover;
  background-position: center;

}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color:  #faca28;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-medium);
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--text-description);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        align-items: flex-start;
        background: var(--nav-bg);
        backdrop-filter: var(--glass-effect);
        -webkit-backdrop-filter: var(--glass-effect);
        width: 80%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: right var(--transition-slow);
        box-shadow: -10px 0 30px var(--shadow-color);
        border-left: 1px solid var(--border-color);
    }

    .nav-active .nav-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(33, 150, 243, 0.15);
    }

    .dropdown {
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        padding: 0;
        padding-left: 1rem;
        margin-left: 1rem;
        display: none;
        box-shadow: none;
        border-left: 1px solid var(--border-color);
        transform: none;
        transition: all var(--transition-medium);
    }

    .dropdown::before {
        display: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .dropdown a {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .search-container {
        width: 100%;
    }

    .search-input, 
    .search-input:focus {
        width: 100%;
    }

    .search-input {
        padding: 0.8rem 1rem;
    }

    .theme-toggle {
        align-self: flex-start;
    }

    .chevron-icon {
        position: absolute;
        right: 1rem;
    }

    .has-dropdown.active .chevron-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        width: 100%;
    }
    
    .hero1 h1 {
        font-size: 2.2rem;
    }
    
    .hero1 p {
        font-size: 1rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 768px) {
  .hero1 {
    padding-top: 80px;
    text-align: center;
  }

  .hero1 h1 {
    font-size: 1.8rem;
  }

  .hero1 p {
    font-size: 0.95rem;
    margin: 0 auto 1.5rem auto;
    max-width: 90%;
  }

  .course-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
    text-align: center;
  }

  .course-logo {
    padding: 0;
    text-align: center;
  }

  .explore-btn {
    width: 100%;
    max-width: 220px;
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .avatars {
    justify-content: center;
    margin-top: 1rem;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  .section h2 {
    font-size: 2rem;
  }

  .feature {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero1 h1 {
    font-size: 1.6rem;
  }

  .hero1 p {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .feature h3 {
    font-size: 1.1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }
}





.about {
  
 
  background-blend-mode: overlay;
  background-position: center;
  background-size: cover;
  text-align: center;
 
 
}

.about h1 {

  color: var(--primary-color);
  font-family:"Quicksand", sans-serif;
  font-size: 46px;
  font-weight: 700;
  text-decoration:underline;
  text-transform: uppercase;
}

.about h2 {
  margin-top: 40px;
  color: rgb(255, 255, 255);
  font-family:"Quicksand", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;

}

.story {
  max-width: 100%;
  min-height: 260px;
  padding: 0;
  color: rgb(255, 255, 255);
  font-family: OpenSans;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
 
}

.square {
  height: 60px;
  width: 60px;
  border: 1px dashed rgb(0, 0, 0);
  margin: 0 0 0 40px;
  /*   padding: 1px; resize squares */
  background-color: rgba(0, 0, 0, 0.934);
  display: inline-block;
  transform: rotateZ(45deg);
  transition: 0.5s;
}
@media screen and (max-width: 507px) {
  .square {
  height: 60px;
  width: 60px;
  border: 1px dashed rgb(0, 0, 0);
  margin: 20px 0 0 20px;
  /*   padding: 1px; resize squares */
  background-color: rgba(0, 0, 0, 0.934);
  display: inline-block;
  transform: rotateZ(45deg);
  transition: 0.5s;
}
}





.square:hover {
  background-color: rgba(255, 254, 254, 0.964);
  transition: ease 0.2s;
  cursor: pointer;
  transition: 0.5s;
}

.square .icons {
  position: absolute;
  transform: rotateZ(-44deg);
  margin: 25px 2px 0px 22px;
}

.fa-facebook,
.fa-twitter,
.fa-dribbbler,
.fa-youtube,
.fa-dribbble {
  width: 11px;
  height: 22px;
  color: white;
  font-family: FontAwesome;
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
}

.square:hover .fa-facebook {
  color: rgba(59, 89, 152, 1)
}

.square:hover .fa-twitter {
  color: rgba(27, 182, 239, 1)
}

.square:hover .fa-dribbble {
  color: rgba(199, 59, 111, 1)
}

.square:hover .fa-youtube {
  color: rgba(229, 45, 39, 1)
}


@media screen and (max-width:1104px){
  .section {
  margin-top: 30px;
}
}
@media screen and (max-width:1000px){
  .section {
  margin-top:5%;
}
}




.dashboard-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 100px;

  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 6%;
   background:  linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/backbround-lines.jpg);
  background-size: cover;
  background-position: center;
}

.left-content {
  max-width: 500px;
  flex: 1;
}

.logo-stars {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 10px;
}

.heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #bbb;
 
}

.sub-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  border-left: 3px solid #fca311;
}

.sub-heading {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.sub-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.learn-more-btn {
  text-decoration: none;
  color: #fca311;
  border: 1px solid #fca311;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-block;
}

.learn-more-btn:hover {
  background-color: #fca311;
  color: #111;
}

.right-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  /* margin-top: 5%; */
  flex: 1;
}

.card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #9b9a9a;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
}

.card h3 {
  margin-top: 0;
  color: #fff;
  margin-bottom: 10px;
}

.card p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}



.about-section {
  padding: 60px 40px;
 /* background:  linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/backbround-lines.jpg);
  background-size: cover;
  background-position: center; */

}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.image-gallery img {
  width: 500px;
  /* border-radius: 10px; */
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
@media screen and (max-width:530px) {
    .image-gallery img {
  width: 300px;
  /* border-radius: 10px; */
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
}


.about-text {
  max-width: 600px;
  
}

.section-label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color:  #fdd85d;
  font-weight: 500;
  font-size: 26px;
}

.section-label .line {
  width: 30px;
  height: 3px;
  background-color: #fdd85d;
  margin-right: 10px;
  display: inline-block;
}

.main-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 25px;
}

.btn-yellow {
  text-decoration: none;
  background-color: #fdd85d;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-yellow:hover {
  background-color: #e0b91e;
  color: #000;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.stat-number .plus,
.stat-number .k,
.stat-number .percent {
  color: #faca28;
}

.stat-label {
  margin-top: 8px;
  font-size: 15px;
  color: #ccc;
}


.explore-section {
  padding: 60px 40px;
  margin-top: 5%;
  /* background-image: radial-gradient(circle at center, #121212 0%, #0d0d0d 100%); */
}

.explore-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.left-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.main-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  
  margin-bottom: 20px;
}

.explore-text {
  margin-top: 10px;
 
}

.sparkle {
  font-size: 24px;
  margin-bottom: 8px;
  color: #faca28;
}

.explore-text h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 12px;
}

.explore-text p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
}

.right-gallery {
  display: flex;
  flex-direction: column;
  flex: 1 1 400px;
  gap: 20px;
}

.top-images {
  display: flex;
  gap: 20px;
  height: 100%;
  width: 100%;
}

.top-images img,
.bottom-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.top-images img {
  flex: 1;
  height: 180px;
}

.bottom-image {
  height: 200px;
}


.learning-section {
  padding: 80px 40px;
  background-color: #0f0f0f;
   background:  linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/backbround-lines.jpg);
  background-size: cover;
  background-position: center;
}




.content-wrapper{
  width: 100%;

  margin: 0 auto;
  text-align: center;
}

.subheading {
  color: #faca28;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 10px;
}

.subheading span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #faca28;
  vertical-align: middle;
  margin-right: 10px;
}

.main-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  border: 1px solid #ffffff33;
  padding: 30px 20px;
  border-radius: 12px;
  background-color: #1b1b1b;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #faca28;
  background-color: #222222;
}

.feature-icon {
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(84%) saturate(678%) hue-rotate(2deg) brightness(103%) contrast(101%);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-card p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}









.content-wrapper1 {
	height: 100%;
	width: 100%;
	max-width: 100rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 5rem;
  margin-top: 20px;
}

.content-wrapper1 h1 {
	margin-bottom: calc(0.7rem + 0.5vmin);
	font-size: calc(2.3rem + 1vmin);
  color: #faca28;
}



.wrapper-for-arrows {
	position: relative;
	width: 70%;
	border-radius: 2rem;
	background: var(--gradient-bg);
	overflow: hidden;
	display: grid;
	place-items: center;
}

.review-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: calc(2rem + 1vmin);
	width: 100%;
}

#imgDiv {
	border-radius: 50%;
	width: calc(6rem + 4vmin);
	height: calc(6rem + 4vmin);
	position: relative;
	box-shadow: 5px -3px #faca28;
	background-size: cover;
	margin-bottom: calc(0.7rem + 0.5vmin);
}

.chicken {
	background-image: url("https://media0.giphy.com/media/A8Cdznswn5vnG/200w.gif?cid=790b7611e8c5980ee7141bc18ec12c49962b871eb404ba5b&rid=200w.gif&ct=s");
	width: 200px;
	height: 250px;
	position: absolute;
	top: 12%;
}

#imgDiv::after {
	content: "''";
	font-size: calc(2rem + 2vmin);
	font-family: sans-serif;
	line-height: 150%;
	color: #fff;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background-color: #faca28;
	position: absolute;
	top: 10%;
	left: -10%;
	width: calc(2rem + 2vmin);
	height: calc(2rem + 2vmin);
}

#personName {
	margin-bottom: calc(0.7rem + 0.5vmin);
	font-size: calc(1rem + 0.5vmin);
	letter-spacing: calc(0.1rem + 0.1vmin);
	font-weight: bold;
}

#profession {
	font-size: calc(0.8rem + 0.3vmin);
	margin-bottom: calc(0.7rem + 0.5vmin);
	color: #faca28;
}

#description {
	font-size: calc(0.8rem + 0.3vmin);
	width: 70%;
	max-width: 40rem;
	text-align: center;
	margin-bottom: calc(1.4rem + 1vmin);
color:#ffff !important;
	line-height: 2rem;
}

.arrow-wrap {
	position: absolute;
	top: 50%;
}

.arrow {
	width: calc(1.4rem + 0.6vmin);
	height: calc(1.4rem + 0.6vmin);
	border: solid #faca28;
	border-width: 0 calc(0.5rem + 0.2vmin) calc(0.5rem + 0.2vmin) 0;
	cursor: pointer;
	transition: transform 0.3s;
}

.arrow:hover {
	transition: 0.3s;
	transform: scale(1.15);
}

.left-arrow-wrap {
	left: 5%;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.right-arrow-wrap {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	right: 5%;
}





.contactcontainer {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #131313;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
   background:  linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/backbround-lines.jpg);
  background-size: cover;
  background-position: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #272727;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  color:#fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #e47f20;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #000000);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #383838;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-contactcontainer {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}


.input::placeholder {
  color: #ffffff; /* Change to your desired color */
  opacity: 1; /* Optional: make sure it's fully visible */
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-contactcontainer label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-contactcontainer.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btncontact {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #4d1e11;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btncontact:hover {
  background-color: transparent;
  color: #fff;
}

.input-contactcontainer span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-contactcontainer span:before,
.input-contactcontainer span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #fefefe;
  top: 50%;
  transform: translateY(-50%);
}

.input-contactcontainer span:before {
  left: 50%;
}

.input-contactcontainer span:after {
  right: 50%;
}

.input-contactcontainer.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-contactcontainer.focus span:before,
.input-contactcontainer.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #bc631a;
}

.text {
  color: #ffffff;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #a4a3a3;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #f5f5f5;
  margin-bottom: 13px;
}


.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #7e7e7e;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 39px;
  height: 39px;
  border-radius: 5px;
  background: linear-gradient(45deg, #eca024, #df8a23);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.9rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #1abc9c;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ffac27, #c3b815);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #101010;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.conatctsquare {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .conatctsquare {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .contactcontainer {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .conatctsquare,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btncontact {
    padding: 0.45rem 1.2rem;
  }
}







/* footer section */
    
.footer-section {
  /* background: #4442ba; */
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #FCA311;
  font-size: 30px;
  float: left;
  margin-right: 30px;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 20px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
    height: 80px;
}
@media screen and (max-width:746px){
  .footer-logo img {
    max-width: 200px;
    height: 150px;
 margin-left:15%;
}
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #FCA311;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #FCA311;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  list-style: none !important;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #FCA311;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 20px;
    background: #FCA311;
    padding: 13px 20px;
    border: 1px solid #FCA311;
    top: 28px;
}


@media screen and (min-width:480px){
  .subscribe-form button {
    position: absolute;
    right: 20px;
    background: #FCA311;
    padding: 13px 20px;
    border: 1px solid #FCA311;
    top: 38px;
}
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #FCA311;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #FCA311;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}


