
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
body {
      font-family: "Roboto Slab", serif;
      background: #f9f9f9;
      padding: 0;margin: 0;
    }

.header {
    display: flex;
    width: calc(100% - 150px);
    justify-content: space-between;
    align-items: center;
    padding: 0 75px;
    flex-wrap: wrap;
 }
 .header .logo {
    width: 200px;
 }
 .header .logo img {
    width: 100%;
    height: auto;
 }
ul.social {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;padding: 0;
 }
 ul.social li {list-style: none;}
ul.social img {width: 26px}
.header .menu .top-sec {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0 40px;
    gap: 20px;
    align-items: center;
}
.header .menu .top-sec span {font-size: 14px;}
.title {
    display: flex;
    flex-direction: column;
    border-left: solid 4px #2e3f51;
    padding-left: 32px;
    margin: 100px 75px 30px;
}
.title .thin {
    font-family: "Roboto Slab", serif;
    font-size: 52px;
    line-height: 64px;
    color: #2e3f51;
    font-weight: 100;
 background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  /* text-fill-color: transparent; */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.title .bold {
  font-family: "Roboto Slab", serif;
    font-size: 52px;
    line-height: 48px;
    color: #2e3f51;
    font-weight: 900;

}
    .tabs {
        text-align: center;
        margin-bottom: 20px;
        display: flex;
        justify-content: flex-end;
        gap: 20px;
    }

    .tabs button {
      font-family: "Roboto", sans-serif;
      text-transform: uppercase;
      padding: 0;
      margin: 5px;
      border: none;
      color: black;
      cursor: pointer;
      background: none;
      font-size: 14px;
      font-weight: 500;
      position: relative;
    }
    .tabs button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #2e3f51);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.tabs button::after {
  bottom: -5px;
  transform-origin: left;
}

.tabs button:hover::after {
  transform: scaleX(1);
}
.tabs button.active:hover::after { transform:none}
.tabs button.active::after {transition: none;background: linear-gradient(to right, #ff0000, #2e3f51);transform:none}
    .tabs button.active {
      color: red;font-weight: 700;
      background: none;
    }

    .gallery {
  display: flex;
  justify-content: flex-start;
  gap: 1px; /* smaller gap between thumbnails */
  flex-wrap: wrap;
}

.gallery-item {
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s ease;
  pointer-events: auto;
  visibility: visible;
  overflow: hidden;
  width: calc(25% - 4px); /* 4 items per row, adjust for gap */
  box-sizing: border-box;
}
.gallery-item::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }

.gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: .4;
            background: linear-gradient(45deg, 
                rgba(102, 126, 234, 0.8) 0%, 
                rgba(118, 75, 162, 0.8) 25%,
                rgba(240, 147, 251, 0.8) 50%,
                rgba(102, 126, 234, 0.8) 75%,
                rgba(118, 75, 162, 0.8) 100%);
            background-size: 400% 400%;
            animation: gradientShift 6s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        } 

.gallery-item.hide {
  display: none;
  transform: scale(0.9);
  pointer-events: none;
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}


    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .overlay {
      font-family: "Roboto Slab", serif;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(2deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
      color: white;
      padding: 0 10px 10px;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-size: 16px;
      font-weight: 400;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      width: calc(100% - 20px);
      height: 100%;
      gap: 10px;
    }
     .overlay img {width: 30px;}
    .overlay .overlaydetails {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .gallery-item:hover::after {
      content: "";
      z-index: 1000;
      background: linear-gradient(2deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .gallery-item:hover .overlay {
      opacity: 1;
    }
     .overlay span:first-child {font-size: 20px;font-weight: 700;}
     .overlay span:nth-child(2) {font-size: 14px;font-weight:400;}

    /* Lightbox */
    .lightbox {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      z-index: 999;
      color: white;
      padding: 0;
      text-align: center;
    }

    .lightbox img {
      max-width: 80%;
      max-height: 80vh;
      margin-bottom: 10px;
      border-radius: 8px;
    }

    .lightbox .caption {
      font-size: 18px;
    }

    .lightbox .nav {
      position: absolute;
      top: 50%;
      width: 80%;
      gap: 30px;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }

    .lightbox .nav span {
      cursor: pointer;
      background: rgba(255, 255, 255, 0.2);
      padding: 15px;
      font-size: 24px;
      user-select: none;
    }
 footer {
      display: block;
      padding: 0 75px 30px;
    margin-top: 118px;
    
  }
footer .sec01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
  footer .title {
      color: #FFF;
      font-size: 50px;
      line-height: 48px;
      font-style: normal;
      font-weight: 800;
      text-transform: capitalize;
  }

  footer .menu-cec {
      display: flex;
      justify-content: space-between;
      padding: 60px 0 40px;
  }

  footer .menu-cec .contact-details h1,
  #sideNav .contact-details h1 {
      color: #FFF;
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: 100%;
      /* 30px */
      /* text-transform: uppercase;
       */
      margin-bottom: 28px;
  }
  footer .menu-cec .contact-details .phone {letter-spacing: 2px;}
  footer .menu-cec .contact-details .mail,
  footer .menu-cec .contact-details .phone,
  #sideNav .contact-details .mail {
      color: #FFF;
      font-size: 22px;
      /* font-family: Arial, Helvetica, sans-serif !important; */
      font-style: normal;
      font-weight: 500;
      line-height: 100%;
      /* 30px */

  }

  footer .menu-cec .contact-details .mail {
      padding-bottom: 10px;
  }

  .links ul {
      display: flex;
      gap: 4px;
      flex-direction: column;
  }

  .links ul li a {
      color: #FFF;
      font-size: 24px;
      font-style: normal;
      font-weight: 800;
      line-height: 150%;
      /* 30px */
      text-transform: capitalize;
  }

  .copyright {
      border-top: 1px solid #766B6B;
      display: flex;
      gap: 20px;
      justify-content: space-between;
      padding: 17px 0;
  }

  .copyright .f-logo {
      width: auto;
      height: auto;
  }

  .copyright .f-logo img {
      width: 48px;
  }

  .contact-details ul {
      display: flex;
      gap: 10px;
      padding-top: 28px;
  }
  .contact-details ul li img {
    width: 40px;
}

  .left-sec p {
      color: #FFF;
      font-size: 13px;
      font-style: normal;
      letter-spacing: 1px;
      font-weight: 400;
      line-height: 100%;
      /* 14px */
      text-transform: capitalize;
      margin-top: 15px;
  }
  footer .sec01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
footer .sec01 .logo {
    width: 60px;
    height: auto
}
footer .sec01 .logo img {
    width: 100%;
    height: auto
}
footer .sec01 .gototop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer .sec01 .gototop:hover {cursor: pointer;}
footer .sec01 .gototop div {font-size: 18px;color: #2e3f51;}
footer .sec01 .gototop img {
    width: 44px;
    height: auto;
}
.copy {font-size: 14px; text-align: center;color: #2e3f51;}


/* inner page */
.sec {
  display: flex;
  padding: 0 75px;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.sec .image {
  width: 50%;
}
.sec .image img {
  width: 100%;border-radius: 8px;
}
.sec .details {
  display: flex;
  width: 50%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.sec .details .title1 {
  font-size: 30px;
  font-weight: 400;
  color: #000;
}
.sec .details p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
}
.sec .details .t2 {
  font-size: 24px;
  font-weight: 400;
  color: #000;
}
.masonry-container {
      column-count: 4;
      gap: 1px;
    }

    .masonry-item {
      background: #f2f2f2;
      padding: 0;
      display: inline-block;
      width: 100%;
      box-sizing: border-box;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
.masonry-item img {width: 100%;height: auto;border-radius: 8px;}
.align-1 {align-items: end;}
.contact-details p, .contact-details h3 {margin: 0;}
    /* Responsive Columns */
    @media (max-width: 1200px) {
      .masonry-container {
        column-count: 3;
      }
    }

    @media (max-width: 768px) {
      .masonry-container {
        column-count: 2;
      }
    }

    @media (max-width: 480px) {
      .masonry-container {
        column-count: 1;
      }
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      padding: 0 75px;
    }

    .grid-item {
      background: #e0e0e0;
      padding: 0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .grid-item img {
      width: 100%;height: auto;border-radius: 8px;
    }

    .grid-item.full-width {
      grid-column: span 2;
    }

    /* Responsive */


    /* Contact */
/* Main Content */
        main {
            padding: 48px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
        }

        @media (min-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Contact Info */
        .contact-info h2 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .contact-info-intro {
            color: #666;
            margin-bottom: 32px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background-color: #030213;
            color: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 20px;
            height: 20px;
        }

        .contact-details h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .contact-details p,
        .contact-details a {
            color: #666;
            text-decoration: none;
        }

        .contact-details a:hover {
            color: #030213;
        }

        .social-divider {
            border-top: 1px solid #e5e5e5;
            margin: 32px 0 24px 0;
            padding-top: 24px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: #ececf0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #1a1a1a;
            transition: all 0.2s;
        }

        .social-link:hover {
            background-color: #030213;
            color: #ffffff;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        /* Contact Form */
        .form-card {
            background-color: #ffffff;
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            padding: 32px;
        }

        .form-card h2 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .required {
            color: #d4183d;
        }

        input,
        textarea {
            width: calc(100% - 32px);
            padding: 12px 16px;
            background-color: #f3f3f5;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.2s;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: #030213;
            box-shadow: 0 0 0 3px rgba(3, 2, 19, 0.1);
        }

        input.error,
        textarea.error {
            border-color: #d4183d;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .error-message {
            color: #d4183d;
            font-size: 14px;
            margin-top: 4px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .success-message {
            background-color: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #15803d;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 24px;
            display: none;
        }

        .success-message.show {
            display: block;
        }

        .submit-btn {
            width: 100%;
            background-color: #030213;
            color: #ffffff;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .submit-btn:hover {
            opacity: 0.9;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .success-inner {
          text-align: center;
        }
    /* Contact */
    .mail-seccess {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    }
    .mail-seccess .submit-btn {display: inline-block}