@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --yellow: #f5bf23;
  --black: #111;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  --border: .1rem solid rgba(0,0,0,.3); }

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s linear; }

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem; }
  html .logo img {
    height: 100px;
    width: auto;
    object-fit: contain; }
  html::-webkit-scrollbar {
    width: 1rem; }
  html::-webkit-scrollbar-track {
    background: transparent; }
  html::-webkit-scrollbar-thumb {
    background: var(--yellow); }

section {
  padding: 3rem 10%; }

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow); }

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize; }
  .btn:hover {
    background: var(--yellow);
    color: var(--black); }

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0; }
  100% {
    top: 100%;
    opacity: 1; } }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  padding: 0 10%;
  background: #007BFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  overflow: visible; }
  .header .logo {
    display: flex;
    align-items: center; }
    .header .logo img {
      max-height: 80px;
      width: auto;
      display: block; }
  .header .navbar {
    display: flex;
    align-items: center; }
    .header .navbar a {
      margin: 0 1rem;
      font-size: 1.4rem;
      color: var(--white);
      position: relative;
      line-height: 1; }
      .header .navbar a:hover {
        color: var(--yellow); }
  .header .icons div {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    background: var(--light-bg);
    color: var(--black);
    cursor: pointer;
    text-align: center;
    margin-left: 1rem; }
    .header .icons div:hover {
      background: var(--yellow);
      color: var(--white); }
  .header #menu-btn {
    display: none; }

.search-form,
.login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--box-shadow);
  animation: fadeIn 0.2s linear;
  display: none; }
  .search-form.active,
  .login-form.active {
    display: flex; }

.search-form {
  width: 70rem;
  padding: 1rem;
  align-items: center;
  gap: 1rem; }
  .search-form input {
    width: 100%;
    padding: 1.2rem 1.4rem;
    background: var(--light-bg);
    font-size: 1.6rem;
    color: var(--light-color); }
  .search-form label {
    font-size: 2.5rem;
    color: var(--black);
    cursor: pointer;
    margin: 0 1rem; }
    .search-form label:hover {
      color: var(--yellow); }

.login-form {
  width: 40rem;
  padding: 2rem;
  text-align: center;
  display: none;
  top: 15%; }
  .login-form.active {
    display: block; }
  .login-form h3 {
    font-size: 2.5rem;
    color: var(--black);
    text-transform: capitalize;
    padding-bottom: 1rem;
    text-transform: uppercase; }
  .login-form .box {
    width: 100%;
    padding: 1rem;
    background: var(--light-bg);
    font-size: 1.6rem;
    color: var(--light-color);
    margin: 1.5rem 0; }
  .login-form .flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0; }
    .login-form .flex label, .login-form .flex a {
      font-size: 1.5rem;
      color: var(--light-color); }
    .login-form .flex a:hover {
      color: var(--yellow);
      text-decoration: underline; }
  .login-form .btn {
    width: 100%; }
  .login-form p {
    font-size: 1.5rem;
    color: var(--light-color);
    line-height: 1.5;
    padding-top: 1.5rem; }
    .login-form p a {
      color: var(--yellow); }
      .login-form p a:hover {
        text-decoration: underline; }

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 30rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 11000;
  padding: 0 2rem;
  padding-top: 0.5rem;
  display: none; }
  .contact-info.active {
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
    display: block; }
  .contact-info #close-contact-info {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
    font-size: 4rem;
    color: var(--black); }
    .contact-info #close-contact-info:hover {
      transform: rotate(90deg); }
  .contact-info .info {
    padding: 1rem 0; }
    .contact-info .info i {
      height: 5rem;
      width: 5rem;
      line-height: 5rem;
      font-size: 2rem;
      background: var(--light-bg);
      color: var(--black);
      cursor: pointer;
      text-align: center;
      margin-bottom: 0.5rem; }
      .contact-info .info i:hover {
        background: var(--yellow);
        color: var(--white); }
    .contact-info .info h3 {
      font-size: 2rem;
      color: var(--black);
      text-transform: capitalize;
      padding: 1rem 0; }
    .contact-info .info p {
      font-size: 1.5rem;
      color: var(--light-color);
      line-height: 1.5; }
  .contact-info .share {
    padding-top: 1rem;
    border-top: var(--border);
    margin-top: 1rem; }
    .contact-info .share a {
      height: 5rem;
      width: 5rem;
      line-height: 5rem;
      font-size: 2rem;
      background: var(--light-bg);
      color: var(--black);
      cursor: pointer;
      text-align: center;
      margin: 0 0.3rem; }
      .contact-info .share a:hover {
        background: var(--yellow);
        color: var(--white); }

.home {
  width: 100vw;
  overflow: hidden;
  margin: 0;
  padding: 0; }
  .home .home-slider {
    position: relative;
    width: 100%;
    height: 100vh; }
    .home .home-slider .slide {
      width: 100%;
      height: 100%;
      background-size: cover !important;
      background-position: center !important;
      display: none;
      align-items: center;
      justify-content: center;
      text-align: center; }
      .home .home-slider .slide.active {
        display: flex;
        animation: fadeIn 0.5s ease-in-out; }
      .home .home-slider .slide .content {
        color: white;
        background: rgba(0, 0, 0, 0.5);
        padding: 2rem;
        border-radius: 1rem; }
        .home .home-slider .slide .content h3 {
          font-size: 3rem;
          margin-bottom: 1rem; }
        .home .home-slider .slide .content p {
          font-size: 1.8rem;
          margin-bottom: 2rem; }
    .home .home-slider .controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%); }
      .home .home-slider .controls span {
        font-size: 3rem;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 1rem;
        cursor: pointer; }
        .home .home-slider .controls span:hover {
          background: var(--yellow);
          color: var(--black); }

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem; }
  .about .row .video {
    flex: 1 1 41rem; }
    .about .row .video video {
      width: 100%; }
  .about .row .content {
    flex: 1 1 41rem; }
    .about .row .content h3 {
      font-size: 3.5rem;
      color: var(--black);
      text-transform: capitalize; }
    .about .row .content p {
      font-size: 1.5rem;
      color: var(--light-color);
      line-height: 1.5;
      padding: 1rem 0; }

.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: flex-end; }
  .about .box-container .box {
    text-align: center;
    background: var(--light-bg);
    padding: 3rem 2rem; }
    .about .box-container .box h3 {
      font-size: 4rem;
      color: var(--black);
      text-transform: capitalize; }
    .about .box-container .box p {
      font-size: 1.5rem;
      color: var(--light-color);
      line-height: 1.5;
      padding: .5rem; }

.services {
  background: var(--light-bg); }
  .services .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem; }
    .services .box-container .box {
      text-align: center;
      padding: 3rem;
      background: var(--white);
      box-shadow: var(--box-shadow);
      border: var(--border); }
      .services .box-container .box:hover img {
        transform: translateY(-1rem); }
      .services .box-container .box img {
        height: 14rem;
        margin-bottom: .5rem; }
      .services .box-container .box h3 {
        font-size: 1.7rem;
        color: var(--black);
        text-transform: capitalize;
        padding: 1rem 0; }
      .services .box-container .box p {
        font-size: 1.4rem;
        color: var(--light-color);
        line-height: 1.5; }

.Projects {
  background: var(--black); }
  .Projects .heading {
    color: var(--white); }
  .Projects .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem; }
    .Projects .box-container .box {
      cursor: initial; }
      .Projects .box-container .box:hover .image img {
        transform: scale(1.1); }
      .Projects .box-container .box .image {
        height: 40rem;
        overflow: hidden; }
        .Projects .box-container .box .image img {
          height: 100%;
          width: 100%;
          object-fit: cover; }
      .Projects .box-container .box .content {
        display: flex;
        background: var(--white);
        justify-content: space-between; }
        .Projects .box-container .box .content .info {
          padding: 1rem 2rem; }
          .Projects .box-container .box .content .info h3 {
            font-size: 1.7rem;
            color: var(--black);
            text-transform: capitalize; }
          .Projects .box-container .box .content .info p {
            font-size: 1.5rem;
            color: var(--light-color);
            line-height: 1.5; }
        .Projects .box-container .box .content i {
          width: 7.5rem;
          font-size: 3rem;
          background: var(--yellow);
          color: var(--white);
          cursor: pointer;
          text-align: center;
          line-height: 7.5rem; }

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5; }
  .reviews .slide p::before {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 2rem;
    height: 2rem;
    width: 2rem;
    background: var(--light-bg);
    transform: rotate(45deg); }

.reviews .slide .user {
  display: flex;
  align-items: center;
  gap: 1.5rem; }
  .reviews .slide .user img {
    height: 7rem;
    width: 7rem; }
  .reviews .slide .user h3 {
    font-size: 2rem;
    color: var(--black);
    text-transform: capitalize; }
  .reviews .slide .user .stars {
    padding-top: .5rem; }
    .reviews .slide .user .stars i {
      font-size: 1.4rem;
      color: var(--yellow); }

.Pricing {
  background: var(--light-bg); }
  .Pricing .box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem; }
  .Pricing .box {
    background: #fff;
    text-align: center;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    width: 280px;
    min-height: 520px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .Pricing .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1); }
  .Pricing .box i {
    font-size: 3rem;
    height: 7rem;
    width: 7rem;
    line-height: 7rem;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto; }
  .Pricing h3 {
    font-size: 2rem;
    color: var(--black);
    text-transform: capitalize;
    font-weight: normal; }
  .Pricing .price {
    padding: 0;
    font-size: 2rem;
    color: var(--black);
    text-transform: capitalize; }
    .Pricing .price span {
      font-size: 2rem; }
  .Pricing .list p {
    padding: 0.5rem 0;
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--light-color);
    font-size: 0.95rem;
    font-size: 1.7rem;
    color: var(--light-color);
    line-height: 1.5; }
  .Pricing .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: var(--black);
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s ease; }
  .Pricing .btn:hover {
    background: #fdb704; }

.Contacts {
  padding: 2rem;
  background: #0c0c0c; }

.Contacts .heading {
  color: var(--white); }

.Contacts .heading {
  font-size: 2.5rem;
  margin-bottom: 2rem; }

.Contacts .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start; }

.Contacts .maps {
  flex: 1 1 40rem;
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px; }

.Contacts form {
  flex: 1 1 40rem;
  background: var(--white);
  padding: 2rem;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05); }

.Contacts form h3 {
  font-size: 2.5rem;
  padding: 0.7rem 0;
  color: #333;
  text-transform: uppercase; }

.Contacts form .text,
.Contacts form .box {
  width: 100%;
  padding: 1.5rem;
  margin: 0.7rem 0;
  font-size: 1.6rem;
  border: none;
  border-bottom: 2px solid #ccc;
  background: var(--light-bg);
  color: var(--light-color); }

.Contacts form .btn {
  margin-top: 1rem;
  display: inline-block;
  background: var(--black);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease; }

.Contacts form .btn:hover {
  background: #e6a800; }

textarea {
  height: 15rem;
  resize: none; }

.blogs {
  background: var(--light-bg);
  padding: 2rem; }
  .blogs .heading {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--black); }
  .blogs .slide {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease; }
    .blogs .slide:hover {
      transform: translateY(-10px); }
    .blogs .slide .image {
      height: 250px;
      overflow: hidden; }
      .blogs .slide .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease; }
        .blogs .slide .image img:hover {
          transform: scale(1.05); }
    .blogs .slide .content {
      padding: 1.5rem; }
      .blogs .slide .content h3 {
        font-size: 1.8rem;
        color: var(--black);
        margin-bottom: 1rem; }
      .blogs .slide .content p {
        font-size: 1.4rem;
        color: var(--light-color);
        margin-bottom: 1.5rem; }
      .blogs .slide .content .btn {
        display: inline-block;
        padding: 0.7rem 1.5rem;
        background: var(--black);
        color: #fff;
        border-radius: 5px;
        font-weight: 600;
        transition: background 0.3s ease; }
        .blogs .slide .content .btn:hover {
          background: #e6a800; }

.footer {
  text-align: center; }
  .footer .links .btn {
    margin: .5rem; }
  .footer .credit {
    font-size: 2rem;
    color: var(--black);
    text-transform: capitalize;
    margin: 2rem;
    padding-top: 1rem; }
    .footer .credit span {
      color: var(--yellow); }

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6); }

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative; }

.close-btn {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer; }

.close-btn:hover {
  color: #000; }

/* Modal wrapper */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center; }

/* Dark background overlay */
.custom-modal .modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  cursor: pointer; }

/* Modal content box */
.custom-modal .modal-content {
  position: relative;
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  text-align: left;
  animation: fadeIn 0.3s ease-in-out; }

/* Modal close button */
.custom-modal .close-btn {
  margin-top: 1rem;
  background: #f44336;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s; }

.custom-modal .close-btn:hover {
  background: #d32f2f; }

/* Pay Now button inside modal */
.custom-modal .pay-btn {
  background: #007bff;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.3s; }

.custom-modal .pay-btn:hover {
  background: #0056b3; }

/* Optional animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.team {
  background: var(--light-bg);
  padding: 4rem 2rem; }
  .team .heading {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--black); }
  .team .team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center; }
  .team .team-member {
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; }
    .team .team-member:hover {
      transform: translateY(-10px); }
    .team .team-member img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem; }
    .team .team-member h3 {
      font-size: 1.6rem;
      color: var(--black);
      margin-bottom: 0.5rem; }
    .team .team-member p {
      color: var(--light-color);
      font-size: 1.2rem; }
    .team .team-member .socials {
      margin-top: 1rem; }
      .team .team-member .socials a {
        color: var(--black);
        margin: 0 0.5rem;
        font-size: 1.5rem;
        transition: color 0.3s; }
        .team .team-member .socials a:hover {
          color: var(--yellow); }

/* Add to your CSS */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center; }

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px; }

@media (max-width: 991px) {
  html {
    font-size: 50%; }
  section {
    padding: 3rem 2rem; }
  .header #menu-btn {
    display: inline-block; }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--black);
    border-top: var(--border);
    border-bottom: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease; }
    .header .navbar.active {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .header .navbar a {
      display: flex;
      margin: 2rem; } }

@media (max-width: 768px) {
  .header .search-form {
    width: 100%; } }

@media (max-width: 450px) {
  .header {
    padding: 1.5rem; }
  section {
    padding: 3rem 10%; } }

@media (max-width: 768px) {
  .box {
    width: 100%; } }

@media (max-width: 768px) {
  .Contacts .row {
    flex-direction: column; } }
