/* headertop start */
    /* General Styles for Header Top */
    .header-top-one {
        background-color: #f8f9fa; /* Light background */
        padding: 10px 0; /* Space above and below */
        font-family: 'Arial', sans-serif; /* Set default font */
        border-bottom: 1px solid #ddd; /* Subtle divider */
    }
    
    .header-top-one .top-inner {
        display: flex;
        justify-content: space-between; /* Distribute left and right content */
        align-items: center; /* Center vertically */
        /* max-width: 1200px;  */
        max-width: 115rem;
        margin: 0 auto; /* Center within page */
    }


    .logo{
        max-width: 20%;
    }

    
    .header-top-one .top-left {
        display: flex;
        align-items: center;
    }
    
    .header-top-one .top-left .social-links {
        display: flex;
        list-style: none;
        margin-top: 15px; /* Space between "Follow Us" and icons */
        gap: 10px;
    }
    
    .header-top-one .social-links li {
        margin-right: 10px; /* Space between icons */
    }
    
    .header-top-one .social-links li:last-child {
        margin-right: 0; /* Remove margin on last item */
    }
    
    .header-top-one .social-links li a {
        font-size: 16px;
        color: #333;
        transition: color 0.3s;
    }
    
    .header-top-one .social-links li a:hover {
        color: #6f42c1; /* Hover color */
    }
    
    .header-top-one .top-right {
        display: flex;
        align-items: center;
    }
    
    .header-top-one .top-right .info {
        display: flex;
        list-style: none;
        margin: 0;
    }
    
    .header-top-one .info li {
        margin-right: 20px; /* Space between contact info blocks */
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #333;
    }
    
    .header-top-one .info li:last-child {
        margin-right: 0; /* No margin for the last item */
    }
    
    .header-top-one .info li i {
        color: #52256e; /* Icon color */
        margin-right: 5px; /* Space between icon and text */
    }
    
    .header-top-one .info li a {
        text-decoration: none;
        color: #333;
        transition: color 0.3s;
        font-weight: 600;
        
    }
    
    .header-top-one .info li a:hover {
        color: #9474b4; /* Hover effect */
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .header-top-one .top-inner {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    
        .header-top-one .top-left,
        .header-top-one .top-right {
            margin-bottom: 10px; /* Add spacing between sections */
        }
    
        .header-top-one .info li {
            margin-right: 10px; /* Reduce spacing */
            font-size: 12px; /* Smaller font for compact view */
        }
    
        .header-top-one .social-links li {
            margin-right: 5px; /* Reduce spacing between icons */
        }
    }

/* end */




body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.activenav {
    font-weight: bold;
}
.nav {
    position: sticky;
    background-color: #ffffff;
    top: 0;
    padding: 10px 20px;
    transition: background-color 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;

}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.nav a {
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #d5d5d5;
}

.toggle-button {
    display: none;
    background: none;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        /* top: 60px;  */
        top: 130px;
        left: 0;
        background-color: #06111c;
        padding: 30px;
    }
    .nav-links.active {
        display: flex; 
        align-items: center;
        line-height: 40px;
        z-index: 1;
    }
    .toggle-button {
        display: block;
    }
    .logo{
        max-width: 35% !important;
    }
}


.alinklineremove{
    text-decoration: none;
    color: black;
}
/* assets/css/style.css */
.nav-links li {
    position: relative;
    overflow: hidden;
}

.nav-links a {
    display: inline-block;
    position: relative;
    transition: transform 0.3s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.3s, left 0.3s;
    z-index: 0;
}

.nav-links a:hover::before {
    width: 100%;
    left: 0;
}

.nav-links a:hover {
    transform: translateY(-2px);
    z-index: 1;
}


.sp{
    text-align: left !important;
    padding-bottom: 1rem;
}
.accordion {
        background-color: #11111100;
        color: #fff;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 18px;
        text-align: left;
        width: 70%;
        font-size: 18px !important;
        transition: background-color 0.3s ease;
    }
    /* .accordion:hover {
        background-color: #333;
    } */
    .accordion:after {
        content: '\25BC'; /* Unicode character for down arrow */
        font-size: 16px;
        float: right;
    }
    .accordion.active:after {
        content: '\25B2'; /* Unicode character for up arrow */
    }
    .panel {
        padding: 0 18px;
        background-color: transparent;
        display: none;
        color: #b3b3b3;
        overflow: hidden;
        width: 70%;
    }
    .panel p {
        /* font-family: 'Inter', 'Arial', 'sans-serif'; */
        margin: 10px 0;
        font-size: 15px;
        text-align: left;
    }
  

    .text-banner h1 {
        margin: 0;
        font-size: 6em;
        font-weight: 600;
        text-transform: uppercase;
    }
    

    /* .text-banner .textleft {
        position: relative;
        right: 15rem;
        margin: 0;
        font-size: 7em;
        font-weight: 600;
        text-transform: uppercase;
    } */

    .text-banner p {
        color: #c5c5c5;
        margin: 10px 0 0;
        text-transform: uppercase;
        font-weight: 100;
        font-size: 1.2em;
    }

    .text-banner-left{
        text-align: left;
        position: relative;
        left: 5rem;
        text-transform: uppercase;
    }


    .textleft {
        display: flex; 
        align-items: center;
    }


   



    .section-01{
        /* background-color: #451163; */
            color: #ffffff;
            text-align: center;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 40vh;
            font-size: 42px;

        }


        .hq{
            align-items: flex-end; 
            text-align: right;
        }

      
        .footer-bottom{
            background: rgb(68 28 91);
            color: white;
        }

    /* Responsive styles */
    @media (max-width: 768px) {

       

        .text-banner h2 {
            font-size: 1.5em;
        }

        .text-banner p {
            font-size: 1em;
        }

        .text-banner {
            padding: 15px;
            min-height: 50vh; /* Adjust min-height for tablets */
        }

        .nav-links a {
            color: rgb(255, 255, 255);
        }

        /* mobview */
        .text-banner-left{
            display: none;
        }

        .text-banner h1 {
            margin: 0;
            font-size: 5em;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .section-01{
    /* font-family: 'Inter'; */
    background-color: #53256e;
        color: #ffffff;
        text-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 70vh;
        font-size: 25px !important;
    }


    
   }

   .arow {
    display: none;
}

.portsec{
    padding-top: 10rem !important; 
    padding-bottom: 10rem !important;
}

.serp{
    line-height: 75px;
}
   @media (max-width: 768px) {
    .conctsec{
        padding-top: 5rem !important;
padding-bottom: 5rem !important;
    }

    .contactserve{
        height: 25vh !important;
    }

    .contactus{
        width: 90% !important;
    }

    .portsec{
        padding-top: 4rem !important; 
        padding-bottom: 4rem !important;
    }
    .hq{
        align-items: flex-start;
        text-align: left;
    }

    .serp{
        font-size: 25px !important;
        line-height: 45px;
    }

    .slide{
        padding: 20px !important;
    }
    .sp {
        text-align: center !important;
    }

    .porth{
        font-size: 22px;
    }

    .portp{
        font-size: 15px;
    }

    .service {
        text-align: center;
font-size: 10px;
line-height: 1.6;
margin: 0;
}
    .arow{
        display: inline;
    }

    .clientd{
        padding-top: 1rem;
    }

    .visual{
        display: flex;
flex-direction: column-reverse;
    }
    .service-item {
    
        padding: 18px !important;
    }
    .serf{
        font-size: 2rem !important;
    }

    .button-link {
        font-size: 11px !important;
    }

    .portline{
        width: 75% !important;
        position: relative !important;
        left: 0rem !important;
    }

    .line-1 {
        width: 90% !important;
        position: relative;
        left: 1rem;
    }
    .line-2 {
        width: 90% !important;
        position: relative;
        left: 3rem;
    }

    .content {
        display: flex;
        justify-content: space-evenly !important;
        align-items: center !important;
        gap: 0rem !important;
        margin-top: 20px;
        padding-bottom: 1rem;
        flex-direction: row ;
    }
    .services-03 {
     
        height: 25vh !important;
    }

    .services {
        align-items: stretch !important;
        height: 60vh !important;
    }
    .urstory{
        display: none;
    }
    .line {
        width: 90% !important;
    }
    .text-banner h2 {
        font-size: 1.2em;
    }

    .text-banner p {
        font-size: 0.9em;
    }

    .text-banner {
        padding: 10px; /* Further reduce padding for smaller screens */
        min-height: 40vh; /* Adjust min-height for mobile */
    }
    .nav-links a {
        color: rgb(255, 255, 255);
    }

    .text-banner h1 {
        margin: 0;
        font-size: 3em;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    .section-01{
/* font-family: 'Inter'; */
background-color: #53256e;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 45vh;
    font-size: 25px !important;
}


}




    @media (max-width: 480px) {

        .conctsec{
            padding-top: 5rem !important;
    padding-bottom: 5rem !important;
        }

        .contactserve{
            height: 30vh !important;
        }

        .contactus{
            width: 90% !important;
        }
        .portsec{
            padding-top: 3rem !important; 
            padding-bottom: 3rem !important;
        }

        .portadk{
            text-align: left !important;
        }

        .hq{
            align-items: flex-start;
            text-align: left;
        }

        .ps-2{
            position: relative;
            top: 2rem;
        }

        .ps-1{
            display: flex;
            flex-direction: column-reverse;
        }

        .serp{
            text-align: center !important;
            font-size: 25px !important;
        }

        .w {
            width: 25rem !important;
        }
        .servicesection {
            padding-bottom: 110rem !important;
            padding-top: 110rem !important;

        }

        .quote {
            font-size: 25px !important;
            }
        .slide{
            padding: 20px !important;
        }
        
        .sp {
            text-align: center !important;
        }

        .logo {
            max-width: 60% !important;
        }

        .porth{
            font-size: 22px;
        }
    
        .portp{
            font-size: 15px;
        }
        .service {
            text-align: center;
    font-size: 10px;
    line-height: 1.6;
    margin: 0;
    }

        .service-item {
            text-align: center;
            font-size: 1.5em;
            padding: 15px;
        }
    

        .arow{
            display: inline;
        }
        .servimg{
            display: none;
        }
        .clientd{
            padding-top: 1rem;
        }

        .visual{
            display: flex;
    flex-direction: column-reverse;
        }

        .service-item {
        
            padding: 18px !important;
        }
        .serf{
            font-size: 2rem !important;
        }

        .button-link {
            font-size: 13px !important;
        }

        .portline{
            width: 75% !important;
            position: relative !important;
            left: 0rem !important;
        }

        .line-1 {
            width: 90% !important;
            position: relative;
            left: 0rem;
        }
        .line-2 {
            width: 90% !important;
            position: relative;
            left: 1rem;
        }

        .content {
            display: flex;
            justify-content: space-evenly !important;
            align-items: center !important;
            gap: 0rem !important;
            margin-top: 20px;
            padding-bottom: 1rem;
            flex-direction: row ;
        }
        .services-03 {
         
            height: 25vh !important;
        }

        .services {
            align-items: stretch !important;
            height: 45vh !important;
        }
        .urstory{
            display: none;
        }
        .line {
            width: 90% !important;
        }
        .text-banner h2 {
            font-size: 1.2em;
        }

        .text-banner p {
            font-size: 0.9em;
        }

        .text-banner {
            padding: 10px; /* Further reduce padding for smaller screens */
            min-height: 40vh; /* Adjust min-height for mobile */
        }
        .nav-links a {
            color: rgb(255, 255, 255);
        }

        .text-banner h1 {
            margin: 0;
            font-size: 3em;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .section-01{
    /* font-family: 'Inter'; */
    background-color: #53256e;
        color: #ffffff;
        text-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 70vh;
        font-size: 25px !important;
    }

 
    }


    .line {
        width: 70%;
        height: 1px;
        background-color: rgb(255, 255, 255);
        margin-bottom: 20px;
    }


    
/* section-02 */
.ourstorycontent{
    text-align: left;
}


.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70rem;
    margin-top: 20px;
    padding-bottom: 1rem;
}
.service {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
  
}

.button {
    padding: 8px 24px;
    border: 1px solid #000000;
    border-radius: 20px;
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    white-space: nowrap; /* Keeps the button in a single line */
}
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .ourstorycontent{
        /* flex-direction: column;
        align-items: center;
        gap: 1rem; */
        text-align: center;
    }

    .content-01 {
        flex-direction: column;
        align-items: center;
        gap: 1rem !important;
    }
}






    .line-1 {
    width: 75%;
    height: 1px;
    background-color: #000000;
    /* margin-bottom: 20px; */
}

.line-2 {
    width: 75%;
    height: 1px;
    background-color: #000000;
    /* margin-bottom: 20px; */
    margin-top: 2rem;
}

.arrow {
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}
ourstorybutton-link


.ourstorybutton-link:hover .arrow {
    margin-left: 15px; /* Moves the arrow a bit when hovered */
}



.ourstorybutton-link {
    font-size: 15px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.ourstorybutton-link:hover {
    color: rgb(209, 209, 209);
}

/* ------------ */


.button-link:hover .arrow {
    margin-left: 15px; /* Moves the arrow a bit when hovered */
}



.button-link {
    font-size: 15px;
    text-decoration: none;
    color: black;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.button-link:hover {
    color: grey;
}


.content-01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20rem;
    margin-top: 20px;
}

 
  /* Loader */
  .bb-loader {
    min-width: 100%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 45;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .bb-loader.hidden {
    opacity: 0;
    visibility: hidden;
  }
  .bb-loader img {
    position: absolute;
    width: 100px; /* Adjust size as needed */
    height: auto;
  }
  .bb-loader .loader {
    width: 60px;
    height: 60px;
    position: relative;
  }
  .bb-loader .loader:before {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
    top: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #3d4750;
    border-radius: 50%;
    animation: animloader 5s linear infinite;
  }
  @keyframes animloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }




/* Service */
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  
}

.service-item {
    /* font-family: 'Clash Grotesk', 'Arial', 'sans-serif'; */

    color: #000000;
    font-weight: 600;
    font-size: 7em;
    position: relative;
    margin-bottom: -40px;
    cursor: pointer;

}

.service-item img {
    position: absolute;
    top: -150px; 
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    width: 300px;
    transition: visibility 0.3s, opacity 0.3s ease;
    opacity: 0;
}

.service-item:hover img {
    visibility: visible;
    opacity: 1;
}

/* .service-item:hover{
margin-left: 35px;
-webkit-transition: opacity .9s, margin-left .5s, margin-right .5s;
} */

.backtop{
    display: flex;
padding: 25px;
flex-direction: column;
align-content: space-between;
align-items: flex-end;
}

@media (max-width: 768px) {

    .backtop{
        display: flex;
    padding: 25px;
    flex-direction: column;
    align-content: space-between;
    align-items: center !important;
    }

    .service-item {
        text-align: center;
        font-size: 1.5em;
        padding: 15px;
    }

    .service-item img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .backtop{
        display: flex;
    padding: 25px;
    flex-direction: column;
    align-content: space-between;
    align-items: center !important;
    }

    .service-item img {
        top: -100px;
        width: 120px;
    }
    .service {
        text-align: center;
font-size: 10px;
line-height: 1.6;
margin: 0;
}


}



/* service end */


/* service-03 and service-04 */
.services-03 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 40vh; */
    height: 20vh;
}


    .services-04 {
    display: flex;
    /* flex-direction: column;
    align-items: center;
    justify-content: center; */
    height: 35vh;
}

/* .txt {
        font-size: 80px;
        font-weight: 600;
        text-align: right;
    } */

    .txt {
font-size: 16vw; /* Responsive font size based on viewport width */
font-weight: 600;
text-align: left;
}

@media (min-width: 768px) {
.txt {
    font-size: 11vw; /* Smaller font size for larger screens */
}
}

@media (min-width: 1024px) {
.txt {
    font-size: 6vw; /* Even smaller font size for extra-large screens */
}
}

/* service-03 and service-04  end*/

/* image */
   
.image-container img {
    max-width: 100%;
    height: auto;
    /* border-radius: 10px; */
    display: flex;
}


/* Hover zoom effect */
.img-hover-zoom {
overflow: hidden;
border-radius: 2px;
/* Ensures the zoomed image stays within the container */
}

.img-hover-zoom img {
transition: transform 0.3s ease; /* Smooth zoom effect */

}

.img-hover-zoom:hover img {
transform: scale(1.1); /* Adjust scale value as desired for zoom effect */
}
 /* end image */


 /* service-05 */
 .service-05{
    padding-bottom: 4rem;
}
.form-container {
text-align: center;
/* max-width: 400px; */
max-width: 35rem;
}

.form-input {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 2px solid #c5b3d685;
color: #53256e;
border-radius: 30px;
font-size: 16px;
text-align: left;

}


.form-input-large {
height: 100px;
resize: none;
border-radius: 15px;
text-align: left;
}

.send-button {
background-color: #111111;
color: white;
width: 130px;
height: 130px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
font-weight: bold;
border: none;
cursor: pointer;
margin: 20px 0;
writing-mode: revert;
text-orientation: mixed;
transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth zoom-in effect */
}



.send-button:hover {
transform: scale(1.2); /* Zoom-in effect */
background: #000000 ;
}


@media (max-width: 425px) {
    .divofpvt{
        font-size: 13px !important;
    }
}

@media (max-width: 375px) {
    .service-item {
        text-align: center;
        font-size: 27px;
        padding: 15px;
    }
    .divofpvt{
        font-size: 13px !important;
    }
    .services {
        align-items: stretch !important;
        height: 55vh !important;
    }
}


/* servic05 end */

/* footer */
.text-reset{
    text-decoration: none;
}
.footerimg{
    max-width: 15rem;
}

.backtop{
    display: flex;
padding: 25px;
flex-direction: column;
align-content: space-between;
align-items: flex-end;
}


.textiline-1 {
    width: 75%;
    height: 1px;
    background-color: #000000;
    /* margin-bottom: 20px; */
}

@media (max-width: 768px) {
    .textiline-1 {
        width: 90% !important;
        position: relative;
        left: 0rem;
    }
    .header-top-one .top-right {
    
        position: relative;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .textiline-1 {
        width: 85% !important;
        position: relative;
        left: 0rem;
    }
}

  .linec{
    padding-bottom: 5rem;
  }


  @media (max-width: 375px) {
    .bracket{
        font-size: 13px;
    }
  }

  
  @media (max-width: 1024px) {
    .testimo{
        position: relative;
        bottom: 5rem;
    }

    .header-top-one .top-inner {
        display: flex
    ;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
    }
    .content {
        
        gap: 33rem;
    }
    .services {
        height: 150vh;
        text-align: center;
    }
    .logo {
        max-width: 55%;
    }
    .service {
        font-size: 13px;
    }
    .content-01 {
        display: flex
    ;
        justify-content: space-evenly;
        align-items: center;
        gap: 0rem;
        margin-top: 20px;
    }
  }


  @media (max-width: 1440px) {
  .services {
    height: 150vh;
    text-align: center;
}
.header-top-one {
    padding: 10px 20px;
}
  }

  /* zoom */
     /* card */
      /* Container for cards */
      .card-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        padding: 20px;
        width: 100%;
    }

    /* Card styling */
    .card {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.2s;
        position: relative;
    }

    .card img {
        width: 100%;
        object-fit: cover;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        transition: transform 0.4s ease; /* Smooth zoom effect */
        cursor: pointer; /* Show cursor pointer when hovered */
    }

    /* Modal styles */
    .modal {
        display: none; /* Hidden by default */
        position: fixed;
        z-index: 1; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        max-width: 50%; /* Limit max size */
        max-height: 80%; /* Limit max size */
        margin: auto;
        display: block;
        transition: transform 0.4s ease;
    }

    /* Close button */
    .close {
        position: absolute;
        top: 20px;
        right: 40px;
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
    }

    /* Responsive design for modal image */
    @media (max-width: 768px) {
        .modal-content {
            max-width: 95%; /* Adjust for smaller screens */
            max-height: 95%;
        }
    }

    /* Card hover effect */
    .card:hover {
        transform: translateY(-5px);
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .card-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .card-container {
            grid-template-columns: 1fr;
        }
    }