@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&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');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

html,
body {
    height: 100vh;
    width: 100%;
    scroll-behavior: smooth;
}
/* WebKit Scrollbar Styling */
::-webkit-scrollbar {
    width: 0px;
}


body {
    background: black;
    color: white;
}

#preloader{
    background: #000 url(loading.gif) no-repeat center center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}
#mini-circle {
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    width: 20px;
    height: 20px;
    position: fixed;
    z-index: 99999;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mini-circle.expand {
    width: 120px;
    height: 120px;
    background: white;
    opacity: 0.9;
}

#mini-circle.expand::before {
    content: "view";
    color: black;
    text-align: center;
}

#main {
    background : #000;
    width: 100%;
}

#hero {
    -webkit-text-stroke-width: 100%;
    height: 100vh;
    background: #000;
}

#nav {
    display: flex;
    color: white;
    width: 100%;
    padding: 41px 40px 0px 40px;
    align-items: center;
    justify-content: space-between;
    overflow-y: hidden;
}

#nav h4 {
    transform: translateY(14px);
}

#nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transform: translateY(14px);
}

#heading {
    margin-top: 67px;
    color: white;
}

.fitcontent h1 {
    margin-left: 230px;
}

#heading h1 {
    height: 20%;
    line-height: 0.9;
    opacity: .6;
    font-size: 10vw;
    text-transform: uppercase;
    font-weight: 500;
}

.bounding {
    margin-left: 30px;
    overflow-y: hidden;
}

.bounding > h1 {
    opacity: 0;
    transform: translateY(90px);
}

.fitcontent {
    width: fit-content;
    overflow-y: hidden;
}

.fitcontent h1 {
    opacity: 0;
    transform: translateY(-90px);
}

.fitcontent p {
    opacity: 0;
    transform: translateY(-14px);
    text-align: right;
    text-transform: uppercase;
    font-size: 15px;
}

#head {
    margin-bottom: 45px;
    overflow-y: hidden;
    justify-content: end;
    color: white;
    font-weight: 300;
    margin-top: 100px;
    margin-right: 21px;
    font-size: 1.5vw;
    font-style: normal;
    text-align: right;
}

#head p {
    transform: translateY(59px);
}

#heroFooter {
    color: white;
    display: flex;
    justify-content: space-between;
    margin: 33px 25px 25px 25px;
    font-weight: 200;
    font-size: 21px;
    background: black;
}

#heroFooter p i {
    background-color: gray;
    border-radius: 50%;
    padding: 6px;
    color: black;
}

.footer1 {
    position: relative;
    padding-left: 8px;
    color: white;
}

.footer1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0.4s ease;
    transform-origin: left;
}

.footer1:hover::before {
    width: 100%;
}

#heroFooter i {
    cursor: pointer;
}

#heroFooter i .icon-symbol:hover {
    animation: slideIn 0.3s ease-in;
}

@keyframes slideIn {
    0% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}
.heading-container {
    margin-top: 225px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24vh;
    background-color: #000;
}

.gradient-heading {
    opacity: 0.5;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;

    opacity: 0.5;
    letter-spacing: 0.2rem;
}


.services-section {
    justify-content: space-between;
    display: flex;
    gap: 20px;
    margin:100px;
}

.service-card {
    position: relative;
    height: 515px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    width: 417px;
    transition: transform 0.3s ease;
    color: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 15px rgba(255, 255, 255, 0.5), 0px 4px 6px rgba(255, 255, 255, 0.3);
}


.service-number {
    font-size: 107px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
}

.service-title {
    font-size: 29px;
    margin-top: 10px;
    color: #fff;
}
.service-description {
    font-size: 22px;
    margin-top: 48px;
    color: #ddd;
}

.service-number img{
    background: white;
    border-radius: 50%;
    width: 45%;
}
.service-card>img {
    scale : 0 ;
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    border-radius: 16px;
    transition: display 0.5s ease-in, scale 0.5s ease-in;
}



#second {
    font-size: 4vw;
    color: #fff;
    padding-top: 25px;
padding-right: 25px;
padding-bottom: 400px;
padding-left: 25px;
    height: 100vh;
    width: 100%;
    background: black;
}

.elem {
    position: relative;
    justify-content: space-between;
    display: flex;
    padding: 21px 0px;
    width: 100%;
    border-top: 2px solid #888;
}

.elem h1 {
    opacity: .7;
    font-weight: 400;
}

.elemlast {
    border-bottom: 2px solid #888;
}

.elem p {
    font-size: 9px;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.elem img {
    display: none;
    height: 100%;
    z-index: 999;
    position: absolute;
    opacity: 0;
}

.elem:hover img {
    display: block;
}

button {
    cursor: pointer;
    font-size: 19px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 45px;
    padding: 6px 18px;
    margin: 45px 0;
    transition: background 0.3s ease-in;
}

button:hover a {
    color: black;
}

button:hover {
    background-color: white;
}

button a:hover {
    color: black;
}

button a {
    text-decoration: none;
    color: white;
}

sup {
    color: gray;
}

#about {
    justify-content: end;
    display: flex
;
    margin: 506px 100px 198px 100px;
    background: black;
}

#about img {
    margin-right: 45px;
    border-radius: 50%;
    height: 275px;
}

#about .info {
    line-height: 1.5;
    width: 50%;
}

#about .info p:nth-child(1) {
    color: gray;
    margin-bottom: 21px;
}

#about .info p:nth-child(2) {
    line-height: 1.5;
}

#reminder {
    margin: 32px 45px;
    text-transform: uppercase;
    background: black;
}

#reminder p:nth-child(1) {
    color: gray;
}

#reminder p:nth-child(2) {
    padding: 5px 0px;
    color: white;
    font-size: 21px;
    position: relative;
}

#reminder p:nth-child(2)::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    transform-origin: left;
    background: white;
    transition: width 0.4s ease;
}

#reminder p:nth-child(2):hover::before {
    width: 35%;
}

#reminder p:nth-child(2) i {
    padding: 0px 21px;
    transform: rotate(-21deg);
    transition: transform 0.4s ease;
}

#reminder p:nth-child(2):hover i {
    transform: rotate(0deg);
}

#footer {
    display: flex;
    justify-content: space-between;
    margin: 100px 45px;
    background: black;
}

.sociallinks {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

.sociallinks p {
    position: relative;
    padding: 10px 21px;
}

.sociallinks p::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    transform-origin: left;
    background: white;
    transition: width 0.4s ease;
}

.sociallinks p:hover::before {
    width: 100%;
}

.heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 30px 0;
  }

 #testimonials {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .heading {
            text-align: center;
            font-size: 3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 60px;
            letter-spacing: 2px;
        }

        .testimonial-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: rgb(17 17 18 / 95%);
            border-radius: 16px;
            padding: 30px 30px 40px 30px;
            color: white;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .profile-section {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .profile-pic {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.2);
            margin-right: 15px;
        }

        .profile-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
        }

        .profile-info .location {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            font-style: italic;
        }

        .stars {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 15px;
            position: relative;
        }

  
   

        /* Special styling for single row items */
        .testimonial-container .testimonial-card:nth-child(8),
        .testimonial-container .testimonial-card:nth-child(9),
        .testimonial-container .testimonial-card:nth-child(10) {
            max-width: 380px;
            justify-self: center;
        }

  


  .heading {
    margin-left: 133px;
    text-align: start;
    font-size: 170px;
    color: white;
    opacity: 0.6;
    font-weight: 600;
}

#second a { 
    color: white;
    text-decoration: none;

}

.sociallinks p a{
    color: white;
    text-decoration: none;
}


  
  .margin {
    margin-left: 174px;
    margin-top: 100px;
    margin-bottom: 100px;
}

    .swiper-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .swiper-wrapper {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .swiper-slide {
            flex: 0 0 auto;
            margin-right: 20px;
            border-radius: 15px;
            overflow: hidden;
            background: #ffffff05;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

        .swiper-slide:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .swiper-slide img {
            opacity: 0.5;
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .swiper-slide:hover img {
            opacity: 0.9;
            transform: scale(1.05);
        }

        .slide-content {
            padding: 25px;
            position: relative;
        }

        .slide-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .slide-description {
            font-size: 0.95rem;
            color: #718096;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .slide-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tag {
            background: white;
            color: black;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .slide-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .slide-link:hover {
            color: #764ba2;
        }

        .slide-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .slide-link:hover::after {
            transform: translateX(4px);
        }

        .navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }

        .nav-btn {
               background: #706f6f33;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 0 9px 29px #a39e9e8a;
        }

        .nav-btn:hover {
            background-color: white;
            color: black;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .nav-btn:active {
            transform: translateY(0);
        }

        .nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .pagination {
            display: flex;
            gap: 8px;
        }

        .pagination-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e2e8f0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pagination-dot.active {
            background: black;
            transform: scale(1.2);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .swiper-slide {
                width: 320px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 25px;
                margin: 10px;
            }

            .header h1 {
                font-size: 2.2rem;
            }

            .header p {
                font-size: 10px;
                text-align: start;
            }

            .swiper-slide {
                width: 280px;
                margin-right: 15px;
            }

            .swiper-slide img {
                height: 200px;
            }

            .slide-content {
                padding: 20px;
            }

            .slide-title {
                font-size: 1.2rem;
            }

            .slide-description {
                font-size: 0.9rem;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 20px;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .swiper-slide {
                width: 260px;
                margin-right: 12px;
            }

            .swiper-slide img {
                height: 180px;
            }

            .slide-content {
                padding: 15px;
            }

            .navigation {
                gap: 15px;
                margin-top: 30px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        /* Animation Classes */
        .slide-enter {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }

        .slide-enter-active {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
/* Responsive Styles */
@media (max-width: 1200px) {
.testimonial-container {
  display: flex;
  gap: 30px;
  flex-direction: column;
  
  scroll-snap-type: x mandatory; /* smooth snapping (optional) */
  -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
}
    #heading h1 {
        font-size: 8vw;
    }

    #nav {
        padding: 20px;
    }

    #about {
        flex-direction: column;
        align-items: center;
        margin: 0px  20px;
    }

    #about img {
        margin-bottom: 20px;
    }

    #about .info {
        width: 90%;
        text-align: center;
    }

    #second {
        padding: 100px 10px;
    }

    .elem {
        align-items: center;
        padding: 15px 0;
    }

    .elem img {
        width: 100px; /* Adjust size for smaller screens */
    }
}

@media (min-width: 480px) and (max-width: 768px) {
.testimonial-container {
  display: flex;
  gap: 30px;
  flex-direction: column;
  
  scroll-snap-type: x mandatory; /* smooth snapping (optional) */
  -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
}




    .margin {
        margin-left: 0px;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    #about img {
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .gradient-heading {
        font-size: 2.5rem;
    }
    #mini-circle{
        display: none;
    }
    #heading h1 {
        font-size: 10vw;
    }

    button {
        font-size: 11px;
        padding: 10px 15px;
    }

    #nav h4 {
        font-size: 16px;
    }

    #heroFooter p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    #heroFooter{
        margin: 0px;
    }


    #heroFooter p {
        margin-bottom: 10px;
    }
    .fitcontent h1 {
        margin-left: 128px;
    }
    #mini-circle{
        display: none;
    }
    .sociallinks {
        margin-bottom: 50px;
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }
    .sociallinks p {
        position: relative;
        padding: 21px 5px;
    }
    #reminder p:nth-child(2) {
        padding: 5px 0px;
        color: white;
        font-size: 11px;
        position: relative;
    }
    #about .info p:nth-child(2) {
        line-height: 1.5;
        font-size: 13px;
    }
    .services-section {
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        margin: 0px;
    }
    .service-number {
        font-size: 81px;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.5);
    }
    .service-title {
        font-size: 20px;
        margin-top: 10px;
        color: #fff;
    }
    .service-card {
        margin: 9px;
        width: 90%;
        height: 90%;
    }
    .service-description {
        font-size: 15px;
        margin-top: 48px;
        color: #ddd;
    }
    .testimonials{
        transform: translateY(0px);
    }
    .heading {
        text-align: center;
        font-size: 18.5vw;
        margin-left: 0px;
    }
    .testimonials2 {
        align-items: end;
        justify-content: start;
        margin-left: 0px;
    }
    .testimonials{
        display: flex;
        flex-direction: column;
    }
    #testimonials {
        max-width: auto;
        margin: 0px;
        padding: 0px;
        margin: auto;
        width: 100%;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    .overlay p {
        font-size: 17px;
        margin: 10px;
    }
    .testimonials .person2 {
        justify-content: end;
        display: inline-flex;
    }
    .testimonials .person2 .overlay {
        display: inline-flex;
        margin-left: 229px;
    }
    #reminder {
        margin: 32px 0px;
        text-transform: uppercase;
        background: black;
    }
    .heading-container{
        margin-top: 0px;
    }
    #hero{
        height: 70vh;
    }
    #about{
        margin:0px;
    }
}

@media (max-width: 480px) {
    .heading-container{
        margin-top: 0px;
    }
    .margin {
        margin-left: 0px;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    #reminder {
        margin: 32px 0px;
        text-transform: uppercase;
        background: black;
    }
    .overlay{
        width: fit-content;
        }
    .person1 img, .person2 img {
        width: 79%;
        border-radius: 16px;
    }
    .testimonials .person2 .overlay {
        display: inline-flex;
    }
    .testimonials .person2 {
        justify-content: end;
        display: inline-flex;
    }
    .overlay p {
        font-size: 9px;
        margin: 10px;
    }
    #head{
        font-size: 2.5vw;
    }

    #testimonials {
        margin: auto;
        width: 100%;
        padding: auto;
        max-width: auto;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    .testimonials{
        display: flex;
        flex-direction: column;
    }
    .testimonials2 {
        align-items: end;
        justify-content: start;
        margin-left: 0px;
    }
    .testimonials{
        transform: translateY(0px);
    }
    .heading{
        font-size: 84px;
        margin-left: 0px;
    }
    #about img {
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .service-card {
        margin: 9px;
        width: 90%;
        height: 90%;
    }
    .service-description {
        font-size: 15px;
        margin-top: 48px;
        color: #ddd;
    }
    .service-number {
        font-size: 81px;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.5);
    }
    #hero{
        height: 70vh;
    }
    .service-title {
        font-size: 20px;
        margin-top: 10px;
        color: #fff;
    }
    .gradient-heading {
        font-size: 2.5rem;
    }
    .services-section {
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        margin: 0px;
    }
    #heroFooter{
        margin: 0px;
    }
    #about .info p:nth-child(2) {
        line-height: 1.5;
        font-size: 13px;
    }
    #reminder p:nth-child(2) {
        padding: 5px 0px;
        color: white;
        font-size: 11px;
        position: relative;
    }
    .sociallinks {
        margin-bottom: 50px;
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }
    .sociallinks p {
        position: relative;
        padding: 21px 5px;
    }
    #mini-circle{
        display: none;
    }
    .fitcontent h1 {
        margin-left: 128px;
    }
    #heroFooter p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    #nav a {
        color: white;
        text-decoration: none;
        font-size: 11px;
        transform: translateY(14px);
    }
    #about .info {
        width: 100%;
        text-align: center;
    }

    #footer {
        flex-direction: column;
        align-items: center;
        margin: 50px 10px;
    }
}
