@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Rowdies:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


html, body {
   width: 100%;
   height: 100%;
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   overflow-x: hidden;
   font-family: "Poppins", serif;
   font-weight: 300;
   font-style: normal;
   background-color: rgb(255, 255, 255);
}

/* ---Slider--- */

/* Full-screen slider container */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    right: 0;
}

/* Slider image styles */
.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 5s ease-in-out;
    transform: scale(1);
}

/* Active slide */
.slider-image.active {
    opacity: 1;
    transform: scale(1.1);
}


/* Adjust main content to be on top of the slider */
.main,
.services {
    position: relative;
    background-color: rgba(255, 255, 255, 0.425);
}

/*header */

 .page-header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.3rem;
    width: 100vw;
    z-index: 2000;
    transition: all 0.3s ease;
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header {
    background-color: rgba(0, 0, 0, 0.7);
      max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.brand-logo .logo-image{
  width: 50px;
  height: 50px;
  margin-left: 5px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
}

.menu-links {
    display: flex;
    gap: 2rem;
}

.menu-item {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f0f0f0;
    transition: width 0.3s;
}

.menu-item:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.sidebar {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 90vw;
    max-width: 300px;
    right: -90vw;
    background-color: black;
    padding-top: 60px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

.sidebar .menu-item {
    display: block;
    padding: 15px 25px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .menu-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .sidebar.open {
        right: 0;
    }
}



.main {
    height: 100vh;
    /*background-size: max(1200px, 100vw);*/
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.blackbox {
    background: linear-gradient(180deg, rgba(65, 48, 62, 0), #000);
    height: 100%;
    position: relative;
    z-index: 10;
}
.hero {
    position: relative;
    bottom: 100%;
    z-index: 10;
}

.text {
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30vh;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    position: relative;
}

.text1 {
    font-size: 30px;
    margin: 0;
}

.text2 {
    font-weight: 600;
    font-size: 60px;
    margin: 0;
}

.text3 {
    font-family: "Josefin Sans", serif;
    font-weight: 700;
    font-style: italic;
    font-size: 40px;
    margin: 0;
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.fade-out {
    animation: fadeOut 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}



.cta {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta a {

    position: fixed;
    bottom: 25px;
    left: 15px;
    animation: whatsapp 0.5s infinite ease-out;
}

@keyframes whatsapp {

    from {
        bottom: 25px;
        left: 15px;
    }

    to {
        bottom: 35px;
        left: 15px;
    }
}

div .box2 {
    display: flex;
    position: fixed;
    right: 0;
    bottom: 25vh;
    flex-direction: column;
    background-color: #0000007c;
    border-radius: 10px 0px 0px 10px;
}

div .box2 img {
    width: 50px;
}

div.box2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    padding: 10px;
    margin: 5px;
    text-decoration: none;
    color: white;
}

div.box2 a i {
    font-size: 40px;
    color: #004197;
}

/* Message styles */
.msg {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(214, 97, 97, 0.656);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: msg 2s ease-out;
    width: 25%;
    max-width: 90%;
    text-align: center;
    font-size: 1rem;
}

.msg:hover {
    background-color: red;
}

.msg a {
    text-decoration: none;
    color: #ffffff;
}

/* Animation for appearance */
@keyframes msg {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20%);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .msg {
        width: 50%;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .msg {
        width: 80%;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}


.mainText2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.counter-section {
    background-color: white;
    padding: 1rem 0;
    margin: 20px;
    margin-top: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.counter-grid {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.counter-item {
    flex: 1;
    min-width: 70px;
    text-align: center;
    padding: 0.5rem 0.25rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.counter-icon {
    color: #4a90e2;
    width: 24px;
    height: 24px;
    margin-bottom: 0.25rem;
}

.counter {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.25rem;
}

.counter-label {
    font-size: 0.7rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .counter-item {
        min-width: 60px;
        padding: 0.25rem 0.1rem;
    }

    .counter-icon {
        width: 20px;
        height: 20px;
    }

    .counter {
        font-size: 0.9rem;
    }

    .counter-label {
        font-size: 0.6rem;
    }
}

.pgHeading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* about */

.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background-color: #000;
}

.about-section {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    flex-wrap: wrap;
}

.about-section .image-container {
    margin: 10px;
    flex: 1;
    position: relative;
    animation: slideIn 1s ease-out;
    min-width: 300px;
}

.about-section .image-container img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.about-section .text-container {
    flex: 1;
    padding: 2rem;
    position: relative;
    min-width: 300px;
}

.about-section h1 {
    color: #ccc;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-section p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.about-section .button-container {
    text-align: left;
}

.about-section .button-container a {
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.about-section .button-container a:hover {
    background-color: #ccc;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-section .text-container {
        padding: 1.5rem;
    }

    .about-section h1 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .about-section .button-container {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-section h1 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 0.8rem;
    }

    .about-section .button-container a {
        padding: 0.6rem 1.2rem;
    }
}


.cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.card {
    width: 100%;
    background-color: #fffef0;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 24px;
    color: #333333;
    margin: 0 0 10px 0;
}

.card-description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-cta {
    display: inline-block;
    background-color: #f8c838;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.card-cta:hover {
    background-color: #F2921D;
}

.c4,
.c5 {
    position: relative;
    left: 54%;
}



/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .c4,
    .c5 {
        position: inherit;
        left: 0;
    }

}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        width: 90%;
        margin: 10px auto;
    }

    .c4,
    .c5 {
        position: inherit;
        left: 0;
    }
}

/*Portfolio */

.portfolio{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    max-width: 1307px;
}

/*.portfolio-container {*/
/*    max-width: 1307px;*/
/*    width: 100%;*/
/*    padding: 1rem;*/
/*  }*/
  
  .carousel-container {
    position: relative;
    width: 100vw;
    overflow: hidden;
  }
  
  .carousel-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .carousel-numbers {
    display: flex;
    gap: 1rem;
  }
  
  .number {
    font-size: 0.9rem;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .number.active {
    opacity: 1;
  }
  
  .carousel-arrows {
    display: flex;
    gap: 1rem;
  }
  
  .prev-btn,
  .next-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
  }
  
  .prev-btn:hover,
  .next-btn:hover {
    opacity: 0.7;
  }
  
  .carousel {
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-slide {
    min-width: 100%;
    padding: 0 1rem;
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
  }
  
  .grid-item {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .grid-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .grid-item:hover img {
    transform: scale(1.05);
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .modal-content {
    margin: 15% auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 90vh;
    object-fit: contain;
  }
  @media (max-width: 480px){
     .modal-content{
          margin: 30% auto;
      width: 90%;
     }
  }
  #imageCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  @media (max-width: 1024px) {
    .image-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .portfolio-container {
      padding: 0.5rem;
    }
  
    .carousel-slide {
      padding: 0;
    }
  
    .image-grid {
      grid-template-columns: 1fr;
    }
  
    .modal-content {
      width: 90%;
      margin: 30% auto;
    }
  }
  

/* contact us section  */

.contact-hero {
    font-family: "Poppins", sans-serif;
    background-color: black;
    color: #ffffff;
    text-align: center;
    padding: 4rem 1rem;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    padding: 4rem 5%;
}

.contact-form,
.contact-info {
    flex-basis: 48%;
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: red;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input,
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    height: 150px;
}

#contactForm button {
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contactForm button:hover {
    background-color: red;
    /* font-size: 1.2rem; */
}

.contact-info p {
    margin-bottom: 1rem;
}

#map {
    height: 300px;
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#close-popup {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        flex-basis: 100%;
    }

    .contact-info {
        margin-top: 2rem;
    }
}

/* CLIENTS REVIEWS */

.testimonials-container {
    height: 80vh;
    width: 100%;
    max-width: 1307px;
    padding: 0;
    text-align: center;
    margin-bottom: 80px;
}

.pgHeading h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    margin-top: 30px;
    position: relative;
    display: inline-block;
}

.pgHeading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border-radius: 2px;
}


.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 300px;
    margin: 0 15px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ff6b6b;
    padding: 3px;
}

.testimonial-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
    }

    .testimonial-card h2 {
        font-size: 2rem;
    }

    .pgHeading h2{
        font-size: 2rem;
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-card {
    animation: slide 0.5s ease-out;
}


/* GALLERY page*/
.gallery-title {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
}
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}
.gallery-item-wide {
    grid-column: span 2;
}
.gallery-item-tall {
    grid-row: span 2;
}
.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}
.fullscreen-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.fullscreen-view.active {
    opacity: 1;
    pointer-events: all;
}
.fullscreen-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.close-button:hover {
    background-color: rgba(255,255,255,0.1);
}
.exit-fullscreen-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.exit-fullscreen-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    .gallery-item-wide,
    .gallery-item-tall,
    .gallery-item-large {
        grid-column: auto;
        grid-row: auto;
    }
}


/* all pages */

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    left: 0;
right: 0;
width: 100%;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 100%);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f0f0f0;    
    animation: fadeInUp 1s ease 0.5s;
    animation-fill-mode: both;
}

.scroll-icon {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .menu-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Footer styles */
.footer {
    font-family: "Poppins";
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
    font-size: 0.9rem;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 1rem;
}

.social-links a:hover {
    color: #111213;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.contact-info div {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info i {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.contact-info a {
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ffffff;
    font-size: 0.9rem;
}

/* ABout PAge  */
.si-about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.si-about-section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.si-about-section.si-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.si-section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.si-section-title:hover {
    color: #e67e22;
}

.si-section-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.si-approach-list, .si-expertise-list {
    list-style-type: none;
    padding-left: 0;
}

.si-approach-list li, .si-expertise-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.si-approach-list li:hover, .si-expertise-list li:hover {
    transform: translateX(5px);
}

.si-approach-list li::before, .si-expertise-list li::before {
    content: '•';
    color: #e67e22;
    position: absolute;
    left: 0;
}

.si-founder-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.si-founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.si-founder-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #e67e22;
    transition: transform 0.3s ease;
}

.si-founder-card:hover .si-founder-image {
    transform: scale(1.05);
}

.si-founder-name {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.si-founder-title {
    font-size: 1rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.si-founder-bio {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .si-section-title {
        font-size: 2rem;
    }

    .si-section-text {
        font-size: 1rem;
    }

    .si-founder-image {
        width: 150px;
        height: 150px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* serVice paGe  */
.services-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color:#2c2c2c;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgb(150, 150, 247);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #3a7bc0;
}

.model {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.model-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    position: relative;
}

.close-model {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .menu-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
}


/* button animated */

.button-container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid transparent;
    font-size: 16px;
    background-color: transparent;
    border-radius: 100px;
    font-weight: 600;
    color: rgb(255, 85, 47);
    box-shadow: 0 0 0 2px rgb(246, 75, 41);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.animated-button svg {
    position: absolute;
    width: 24px;
    fill: rgb(255, 85, 47);
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
    right: 16px;
}

.animated-button .arr-2 {
    left: -25%;
}

.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: rgba(255, 86, 74, 0.851);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text-animated {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #ffffff;
    border-radius: 12px;
}

.animated-button:hover .arr-1 {
    right: -25%;
}

.animated-button:hover .arr-2 {
    left: 16px;
}

.animated-button:hover .text-animated {
    transform: translateX(12px);
}

.animated-button:hover svg {
    fill: #ffffff;
}

.animated-button:active {
    transform: scale(0.95);
    box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}



/* VIDEO GALLERY  */
.gallery__container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery__video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.gallery__main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.gallery__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    padding: 10px;
    transition: opacity 0.3s;
}

.gallery__play-pause, .gallery__fullscreen {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-right: 10px;
}

.gallery__progress {
    flex-grow: 1;
    height: 5px;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    position: relative;
}

.gallery__progress-bar {
    height: 100%;
    background-color: #ff0000;
    width: 0;
}

.gallery__time {
    color: white;
    font-size: 14px;
    margin-left: 10px;
}

.gallery__thumbnails {
    display: flex;
    padding: 10px;
    background-color: #fff;
}

.gallery__thumbnail {
    width: 120px;
    height: 68px;
    margin-right: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gallery__thumbnail.active {
    border-color: #ff0000;
}
@media (max-width: 480px) {
    .text1 {
        font-size: 22px;
    }

    .text2 {
        font-size: 35px;
    }

    .text3 {
        font-size: 35px;
    }

  div.box2 a i {
        font-size: 20px;
    }

    div .box2 img {
        width: 20px;
    }
    .cta {
        display: none;
    }
     .page-header, .navigation-bar {
        width: 100%;
    }
    .sidebar {
        width: 90%;
    }
    .gallery-item {
        width: 100%;
    }
}



.cards, .gallery-container {
    max-width: 100%;
    overflow-x: hidden;
    grid-template-columns: 1fr;
}