@import url('https://fonts.googleapis.com/css2?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');

@font-face {
    font-family: freescpt;
    src: url(/FREESCPT.TTF);
    
}

  #circle {
   
    width: 20px;
    height: 20px;
    border-radius: 70%;
    background: rgba(27, 104, 237, 0.9);
    position: fixed;
    z-index: 99999999;
    pointer-events: none;
  }

/* ========================================= */
/* 1. Global / Reset */
/* ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    color: white;
    background-color: black;
}

a {
    text-decoration: none;
}

/* ========================================= */
/* 2. Loader */
/* ========================================= */

.loader {
    height: 100%;
    width: 100%;
    background-color: black;
    position: fixed;
    top: 0;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all linear 0.5s;
}

.loader h1 {
    position: absolute;
    font-size: 5vw;
    background: linear-gradient(to right, #90e0ef, #00b4d8);
    color: transparent;
    -webkit-background-clip: text;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 1s;
 
}


@keyframes load {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.loader h1:nth-child(1) {
    animation-delay: 2s;
}

.loader h1:nth-child(3) {
    animation-delay: 3s;
}

/* ========================================= */
/* 3. Page 1: Hero Section & Video */
/* ========================================= */

.page1 {
    height: 100vh;
    width: 100%;
    background-color: rgb(99, 98, 98);
    position: relative;
}

.video {
    height: 100%;
    width: 100%;
    position: relative;
}

.video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    
        
        

}

.blur_page {
    height: 4vh;
    width: 100%;
    background-color:rgb(0, 225, 0);
    position: absolute;
    top:99vh;
    z-index: 9999999;
        backdrop-filter: blur(20px);

    /* Fade to transparent for smooth merge */
    background: linear-gradient(
        to bottom,
        rgba(60, 6, 6, 0.591) 10%,
        rgba(27, 5, 5, 0.353) 40%,
        rgb(0, 0, 0) 100%
    );
}



/* ========================================= */
/* 4. Navigation Bar */
/* ========================================= */

.nav {
    position: fixed;
    z-index: 99999999;
    
    width: 60%;
    left: 20%;
    top: 2%;
    height: 70px;
    
    background-color: rgba(27, 27, 27, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);

    margin: 0 auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3vw;
    border: .1px solid rgba(78, 77, 77, 0.336);
}


.nav ul {
    display: flex;
    gap: 2vw;
}

.nav ul li {
    list-style: none;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background-color: transparent;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border-radius: 9px;
}

.nav ul li:not(.hireme):hover {
    background-color: transparent;
    color: #48E1FF;
    transform: translateY(-2px);
    text-shadow: 0 0 5px rgba(72, 225, 255, 0.2); 
}
.nav .logo h4 {
    /* text-decoration: underline; */
  text-shadow: 
    0px 0px 0 #061866, 2px 2px 0 #000000, 1px 2px 0 #07111f, 1px 1px 0 #081a30, 0 0 10px rgba(47, 57, 62, 0.5), 0 0 20px rgb(255, 255, 255);
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 100;
    font-style: italic;
    font-size: 13px;
}

nav .logo img {
    height: 49px;
    border-radius: 50%;
    margin-left: -10px;
}

nav .logo img:hover {
    border: 2px solid rgb(42, 40, 146);
}

.links ul .hireme {
    background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
    padding: 8px 25px;
    border-radius: 50px;
    margin-right: -25px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    color: white;
}

.links ul .hireme:hover {
    background: linear-gradient(90deg, #5c75e8 0%, #ec536c 100%);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 20px rgba(96, 126, 255, 0.6);
    color: white; 
}


/* ========================================= */
/* 5. Page 2: Services & Details */
/* ========================================= */

/* .page2 {
    min-height: 80vh;
    width: 100%;
    overflow-x:hidden ;
    position: relative;
}

.details_about {
    height: 40vw;
    width: 100%;
    background-color: #5c75e8;
    position: relative;
}
.details_about h1{
    font-size: 8vw;
}

.details_about p{
    font-size: 1.2vw;
}


.details_about h3 {
    display: inline-block;
    text-align: center;
    background-color: red;
}
.seperate_line {
    height: 1px ;
    width: 80%;
    margin: 0 auto;
    background-color: rgba(128, 128, 128, 0.342);
    position: absolute;
    bottom: 0;
    left: 10%;
}
#det_btn{
    display: inline-block;
  margin-top: 30px;
    margin-left: 40vw;
}

.btnas_proj {
    padding: 12px 30px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    color: #ffffff;
    background-color: rgba(66, 66, 66, 0.61);
    border-radius: 10px;
    transition: .5s;
    margin-left: 20px;
 
}
.btnas_proj:hover {
    background-color:rgb(34, 34, 34) ;
}


.details_about h1 , .details_about p {
    display: flex;
    justify-content: center;
}
.personal_links {
    position: absolute;
    bottom: 5%;
    left: 10%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-items: center;
    gap: 20px;
    
}



.icons {
    display: flex;
    align-items: center;
    gap: 0px;
}

.icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease;
}

.icons div h3 {
    font-size: 1.1em;
    font-weight: 500;
}

.icons div i {
    font-size: 35px;
}

.icons .icon_instagram i{
color: rgb(206, 9, 140);
}

.icons .whatsapp_icon i{
color: gray;
margin-left: 20px;
} */


/* new page 2-------------------------------------------------------------------------------------------------------------- */
.page2 {
    min-height: 100vh;
    width: 100%;
    overflow-x:hidden ;
    position: relative;
 /* background:url(/Images/page2_image.png); */
 background-position: center center;
 padding: 3vw 2vw;

    background: radial-gradient(
        ellipse at top, 
        #000000 0%,        /* Strongest white highlight */
        #0d1419 20%,        /* Light blue area */
        #000000 60%,        /* Mid-tone blue */
        #000000 100%        /* Deep blue base */
    );
}

.frame-media {
   

    font-size: 9vw; /* Slightly larger */
    font-weight:600; 
    letter-spacing: 1px; 
    margin-top: 10vw;
    text-align: center;
    font-family:  Arial, Helvetica, sans-serif;
    
    /* 1. Base color (Inner Text Face) - Using a radial gradient for a polished metallic shine */
   
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 /* 2. Enhanced Shadowing for Depth and Glow */
    text-shadow: 
      /* text */
        1px 1px 0 #061866,
        2px 2px 0 #081a30,
        3px 3px 0 #07111f,
        4px 4px 0 #081a30,
        
        /* text glow */
        0 0 10px rgba(73, 168, 216, 0.5),

        /* The Faint Outer Glow/Fringe (Wider, high blur) */
        0 0 20px rgba(0, 150, 255, 0.4); 
}  
.emotions {
    margin: 0 auto;
    height: max-content;
    width: max-content;
    /* background-color: red; */   
}

.emotions p {
    font-size: 2vw;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(209, 207, 207, 0.911);
    margin-top: -20px;

}
.emotions  span {
    color: rgb(50, 184, 207);
    font-family: freescpt;
    font-size: 3.4vw;
}


    

.seperator {
    height: 2px ;
    width: 80%;
    background-color: rgba(49, 49, 49, 0.332);
    position: absolute;
    bottom: 0;
   margin-left: 10%;
}

.buttonz {
    height: max-content;
    width: max-content;
    padding: 8px 20px;
    
    position: absolute;
    border-radius: 10px;
    color:#19CACF ;
    font-weight: 900;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.346);
    font-family:freescpt ;
    font-size: 38px;
     backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* BLURRED BORDER EFFECT */
  box-shadow: 
      0 0px 12px rgba(222, 215, 215, 0.4),       /* outer blur */
      inset 10px 0 10px rgba(190, 194, 190, 0.2); /* inner blur */
      transition:  2s;
}
.buttonz1 {
   top:63%;
   left:43%;
   background-color: #192f8558;
   
}
.buttonz1:hover {
    border: #000000;
}

.buttonz2 {
   top: 63%;
   left: 52%;
   background-color: rgba(106, 156, 106, 0.173);
   

}
.buttonz2:hover {
    border: #000000;
}

.testimonials-placeholder {
    text-align: center;
    padding: 50px 0 0 0;
}
.testimonials-placeholder h2 {
    font-size: 2em;
    color: #6a82fb;
}
.testimonials-placeholder p {
    font-size: 1.2em;
    margin-top: 10px;
    font-style: italic;
    color: #ccc;
}
.title{
    color: #66A3FF;
    font-family:cursive;
    margin: 5vw 0 1vw 0;
    text-shadow:
       5px 1px 0 #3484fd9d,
      -1px -1px 0 rgb(7, 30, 104),
       1px -1px 0 rgb(33, 17, 175),
      -1px 1px 0 rgb(17, 21, 221);
}


.gaala {
    height: 400px;
    width: 500px;
    border-radius: 50%;
    background:linear-gradient(60deg, rgb(33, 83, 148), rgba(1, 1, 34, 0.425));
    position: absolute;
      filter: blur(20px);
    top: 18%;
    right: 0%;
    animation-name: gaalaAnim;
    animation-duration: 9s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;

}
.gaala2 {
    height: 450px;
    width: 400px;
    border-radius: 50%;
    /* background-color: red; */
     background:linear-gradient(60deg,  rgba(1, 1, 34, 0.733), rgb(28, 82, 153));
    position: absolute;
    filter: blur(30px);
    top: 17%;
    right: 0%;
    animation-name: gaalaAnim2;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;

}

@keyframes gaalaAnim {
    from {
        transform: translate(0, 0) scale(1.1) ;
    }

    to {
        transform: translate(15%, -15%) scale(1) ;
    }
}


@keyframes gaalaAnim2 {
    from {
        transform: translate(-10%, 10%) scale(1);
    }
    to {
        transform: translate(10%, -10%) scale(1.15);
    }
}


.details h2 {
    transition: color 0.3s ease, text-shadow 0.3s ease;
    cursor: default;
}
.details h2:hover {
    color: #a4f2ff;
    text-shadow: 0 0 5px rgba(164, 242, 255, 0.5); 
}

/* ========================================= */
/* 6. Projects Section */
/* ========================================= */

.projects {
    padding: 0 8vw;
}
.projects h1 {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 40px;
    border-radius: 30px;
    border: 1px solid red;
    font-weight: 500;
    color: #FF4240;
}
.project_center {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btnss{
    padding: 12px 30px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    border-radius: 8px;
    margin-left: 10px;
    background: linear-gradient(45deg, rgb(32, 118, 121), rgb(50, 110, 179));
    background-size: 300%;
    animation: gradAnim 3s linear infinite;
    perspective: 1000px;
}
.active-btn {
    background: linear-gradient(45deg, #2aacc6, #00B4D8) !important; 
    box-shadow: 0 0 15px rgba(72, 225, 255, 0.5) !important;
    transform: scale(1.05);
}

@keyframes gradAnim {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 100%;
    }
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.video-box {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-msg {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-box:hover .play-msg {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    position: relative;
    width: 80%;
}

.modal video {
    width: 100%;
    border-radius: 10px;
}

.closeBtn {
    position: absolute;
    top: -35px;
    right: 0;
    color: white;
    font-size: 35px;
    cursor: pointer;
}


.projects_h1,
.long_projects,
.shorts-projects h1
 {
    transition: color 0.3s ease, text-shadow 0.3s ease, text-decoration-color 0.3s ease;
    cursor: default;
}
.thumbnails-section h1 {
    display: inline-block;
    font-size: 16px;
    margin: 20px 0;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.616);
    color: #FF4240;
    font-weight: 500;

}
.projects_h1:hover,
.long_projects:hover,
.shorts-projects h1:hover {
    color: #48E1FF;
    text-decoration-color: #48E1FF;
    text-shadow: 
        0 0 3px #48E1FF,
        0 0 6px rgba(72, 225, 255, 0.5); 
}



.long_projects,
.shorts-projects h1 {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    margin: 30px 0 20px 0;
    text-decoration: underline;
    text-decoration-color: #00B4D8;
    font-size: 1.8em;
}




.shorts-section,
.saas-section {
    display: none; 
}


/* SHORTS SECTION */
.shorts-section {
    /* background-color: red;  */
    margin-top: 50px;
    padding: 0 5vw;
}

.shorts-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #48E1FF;
    text-decoration: underline;
    text-decoration-color: #00B4D8;
}
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 15px;
}


.short-box {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.short-box video {
    width: 100%;
    height: 450px; 
    object-fit: contain; 
    border-radius: 10px;
    background-color: black; 
}


.short-box:hover {
    transform: scale(1.05);
}

.short-play-msg {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.short-box:hover .short-play-msg {
    opacity: 1;
}


.shorts-modal {
    display: none;
    position: fixed;
    top: 17%; 
    left: 0;
    width: 100%; 
    height: 80%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.shorts-modal-content,
.saas-modal-content {
    position: relative;
    width: 90%; 
    max-width: 900px;
}

.shorts-modal video,
#shortsModalVideo
 {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 10px;
    object-fit: contain;
}

.shorts-close,
.saas-close {
    height: 40px; 
    width: 40px;
    position: absolute;
    top: -10px; 
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#saasModalVideo {

    height: 78vh; 
  
    max-height: 85vh; 
    width: 100%;
 
}

/* SAAS SECTION */
.saas-section {
    margin-top: 50px;
    padding: 0 5vw;
}

.saas-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #48E1FF;
    text-decoration: underline;
    text-decoration-color: #00B4D8;
}
.saas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 15px;
}


.saas-box {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.saas-box video {
    width: 100%;
    height: 450px; 
    object-fit: contain; 
    border-radius: 10px;
    background-color: black; 
}


.saas-box:hover {
    transform: scale(1.05);
}

.saas-play-msg {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.saas-box:hover .saas-play-msg {
    opacity: 1;
}



/* ========================================= */
/* 7. Thumbnails/Carousel Section */
/* ========================================= */

.thumbnails-section {
    padding: 100px 0;
    text-align: center;
    background-color: black;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.carousel-track-container {
    overflow: hidden;
    width: 90vw;
    max-width: 1600px; 
}

.carousel-track {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 450px; 
    margin: 0 15px;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: 20px;
    display: block;
}

.carousel-slide.is-center {
    transform: scale(1.05);
    opacity: 1;
    filter: blur(0);
    z-index: 5;
    box-shadow: 0 0 20px rgba(72, 225, 255, 0.3);
}

.carousel-slide:not(.is-center) {
    transform: scale(0.85);
    opacity: 0.6;
    filter: blur(2px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00B4D8;
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-btn:hover {
    background: #48E1FF;
    box-shadow: 0 0 15px #48E1FF;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* ========================================= */
/* 8. Page 3 / F */
/* ========================================= */


.page3 {
    min-height: 100vh;
    width: 100%;
    background-color: #000;
}




/* PAGE 04 */
.page4 {
    height: 80vh;
    width: 100%;
   

}


.page5 {
    min-height:100vh;
    width: 100%;
    background-color: black;
}






/* reviews */



.testimonials-section {
    max-width: 1200px;
    width: 100%;
    padding: 60px 20px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.label {
    display: inline-block;
    color: #ff4444;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.281);
}

.testimonials-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.subtitle {
    font-size: 18px;
    color: #888;
    font-weight: 400;
}

.testimonials-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.nav-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 12px 14px;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background-color: rgb(0, 0, 0);
    border: 1px solid gray;
   
}

.nav-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn:active {
    transform: scale(0.95);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    max-width: 700px;
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.testimonial-content {
    width: 100%;
}

.review-text {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 32px;
    font-weight: 400;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.dots-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 10px;
    height: 10px;
}

.line_seperate {
    height: 2px ;
    width: 80%;
    margin: 20px auto;
    background-color: rgba(46, 44, 44, 0.342);
    
    bottom: 0;
    left: 10%;
}




/* about  */
.about_dets{
    
    height: 70%;
    position: relative;
}


.about_dets .editor{
    font-size: 18px;
    /* background-color: red; */
    display: inline-block;
   height: max-content;
   width: max-content;
    padding: 8px 23px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.418);
    color: red;
    font-weight: 500;
     margin: 20px 0 20px 48%;
    
    
}
.about_dets p {
    height: max-content;
    width: max-content;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1.2px;
    font-size: 20px;
color: white;
}
.about_dets p span {
    color: #38e8ff;
    font-family: freescpt;
    font-size:25px ;
    font-weight:lighter;
    
    letter-spacing: 2px;
}

.more_dets{
    height: 60%;
    margin-top: 40px;
    margin-bottom: 20px;
}

 .more_dets .huss_img {
    display: flex;
    justify-self: center;
    height: 250px;
    width: 200px;
    rotate: 3deg;
    transition: ease-out all .5s;
    border: 1px solid rgb(54, 51, 51);
}

 .more_dets .huss_img:hover{
    rotate: 0deg;
    scale: 1.1  ;
 }



 /* faq section */

 .faqs-section {
    padding: 60px 5% 80px; 
    /* background-color: rgb(117, 214, 165);  */
    color: #f7f7f7cb;
    font-family: Arial, sans-serif;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

.faqs-section h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: 700;
    color: #dfd4d4;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #52504e;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;

}

.faq-item h3 {
    background-color: #535151;
    margin: 0;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
  
}

.faq-item h3:hover {
    background-color: #636161;
}

.faq-item h3 i {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-item p {
    margin: 0;
    padding: 0 25px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

/* --- Active/Open State Styles (Controlled by JS) --- */

.faq-item.active h3 i {
    transform: rotate(180deg);
}

.faq-item.active p {
    max-height: 500px; 
    padding: 15px 25px 25px 25px;
    border-top: 1px solid #eee;
    background-color: rgb(39, 39, 39);
    color: white;
}
.FAQs {
   height: max-content;
   width: max-content;
   padding: 8px 20px;
   border-radius: 20px;
    /* background-color: red; */
    border: 1px solid rgb(143, 35, 35);
    color: red;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
}




/* ---------------- */
/* signup form */
/* ============== */



.iconsss{
    display: flex;
   margin: 20px 0;
}
.signup h1 {
    padding: 10px 20px;
    width: max-content;
    height: max-content;
    margin: 0 auto;
    /* background-color: red; */
    font-size: 16px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(196, 11, 11, 0.473);
    color: red;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 20px;
    
}

.signup h2 {
    justify-self: center;
    font-size: 20px;
    color: white;
}

.iconsss {
  /* background-color: red; */
  height: 40px;
  width: 90px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;

}

.iconsss  i {
    font-size: 30px;
}
.iconsss .ri-twitter-x-fill{
    color: gray;
}
.iconsss .ri-instagram-fill {
    color: rgb(167, 24, 48);
}

.form-container {
    max-width: 1200px;
    margin: auto;
    background: #111;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    font-family: sans-serif;
}

.row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

label {
    margin-bottom: 8px;
    opacity: 0.8;
}

input, select, textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
}

textarea {
    height: 140px;
    resize: none;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
}

input[type="radio"] {
    accent-color: #008cff;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #333;
}
   /* */
 









/* footer  */



.fm-footer {
  background: #0a0a0a;
  color: white;
  padding: 30px 15px 15px;   /* ↓ height */
  font-family: sans-serif;
  font-size: 14px;           /* ↓ smaller font */
  margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;                 /* ↓ less spacing */
}

.footer-col h3 {
  margin-bottom: 8px;
  font-size: 16px;           /* ↓ smaller heading */
}
#framemediaaa{
    font-size: 22px;
    text-shadow: -3px 3px 4px blue;
    color: #b9cad8;
}
.footer-col h3 {
    font-size:18px;
    text-decoration: underline;
    text-decoration-color: lightgoldenrodyellow;
}

.footer-col ul li {
  font-size: 13px;           /* ↓ smaller text */
  margin: 5px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: #4da3ff;
  text-decoration: none;
  font-size: 13px;           /* ↓ smaller link text */
}

.footer-col a:hover {
  text-decoration: underline;
}

.copy {
  text-align: center;
  margin-top: 25px;          /* ↓ smaller gap */
  padding-top: 12px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 12px;           /* ↓ smaller copyright */
}











/* Tablets and smaller laptops (1024px and below) */
@media (max-width: 1024px) {
    .nav {
        width: 80%;
        left: 10%;
        padding: 0 2vw;
    }

    .nav ul {
        gap: 1.5vw;
    }

    .nav ul li {
        font-size: 13px;
        padding: 6px 12px;
    }
   
    .buttonz1 {
   top: 43%;
   left:23%;
   background-color: #192f8558;
   
}


.buttonz2 {
   top: 43%;
   left: 58%;
   background-color: rgba(106, 156, 106, 0.173);
   

}
.emotions p {
    font-size: 2vw;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(209, 207, 207, 0.911);
    margin-top: 20px;

}


    .details_about h1 {
        font-size: 10vw;
    }

    .details_about p {
        font-size: 1.8vw;
    }

    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .carousel-slide {
        min-width: 350px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .testimonial-card {
        padding: 35px;
    }

    .review-text {
        font-size: 18px;
    }

    .page4 {
        height: auto;
        padding: 40px 0;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .nav {
        width: 90%;
        left: 5%;
        height: auto;
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
    }

    .nav ul {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav ul li {
        font-size: 12px;
        padding: 5px 10px;
    }

    nav .logo img {
        height: 40px;
    }

    .details_about {
        height: auto;
        padding: 20px;
    }

    .details_about h1 {
        font-size: 12vw;
    }

    .details_about p {
        font-size: 3vw;
    }
    .long_videos{
        margin-top: 30px;
    }

    .btnas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #det_btn {
        margin-left: 0;
        display: block;
        margin: 20px auto;
    }
    .buttons_projects{
        display: flex;
        flex-direction: column;
        margin: 230px 20px;
    }

    .btnas_proj {
        margin-left: 0;
        margin-top: 10px;
    }

    .personal_links {
        position: static;
        justify-content: center;
        margin-top: 30px;
        flex-direction: column;
        text-align: center;
    }

    .gaala, .gaala2 {
        height: 250px;
        width: 300px;
    }

    .projects {
        padding: 0 4vw;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .shorts-grid, .saas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thumbnails-section {
        padding: 60px 0;
    }

    .carousel-slide {
        min-width: 280px;
        margin: 0 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 10px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .carousel-container {
        padding: 0 30px;
    }

    .testimonials-section {
        padding: 40px 15px;
    }

    .testimonials-container {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
        min-height: auto;
    }

    .review-text {
        font-size: 16px;
    }

    .testimonials-header h2 {
        font-size: 36px;
    }

    .page4 {
        height: auto;
        padding: 20px 0;
    }

    .about_dets .editor {
        margin: 20px auto;
        display: block;
        text-align: center;
    }

    .about_dets .learn {
        font-size: 50px;
        margin: 20px auto;
        text-align: center;
        width: 90%;
        height: auto;
    }

    .about_para {
        width: 90%;
        font-size: 15px;
        margin: 20px auto;
    }

    .more_dets .huss_img {
        margin: 0 auto;
    }

    .form-container {
        padding: 20px;
    }

    .row {
        flex-direction: column;
        gap: 0;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .page5 .about_dets p {
        font-size: 2.2vw;
   letter-spacing: 1px;}

        .page5 .about_dets p span {
            font-size: 16px;
        }
       .about_dets img {
            height: 100px;
        }
        
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
*{
    margin-top: none;
}

    .loader h1 {
        font-size: 8vw;
    }

    .nav {
        width: 95%;
        left: 2.5%;
        padding: 8px 10px;
    }

    .nav ul li {
        font-size: 11px;
        padding: 4px 8px;
    }

    nav .logo h4 {
        font-size: 16px !important;
    }

    nav .logo img {
        height: 35px;
       
    }



    .details_about h1 {
        font-size: 15vw;
        margin: 3vw 0 1vw 0;
    }

    .details_about p {
        font-size: 4vw;
    }

    .btnss {
        
        font-size: 14px;
       
    }

    .btnas_proj {
        padding: 10px 20px;
        font-size: 14px;
    }

    .icons div i {
        font-size: 28px;
    }

    .icons .whatsapp_icon i {
        margin-left: 10px;
    }

    .projects {
        padding: 0 3vw;
    }

    .project_center {
        height: auto;
        padding: 20px 0;
    }

    .project_center h1 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .buttons_projects {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .buttons_projects button {
        width: 100%;
        margin-left: 0;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .shorts-grid, .saas-grid {
        grid-template-columns: 1fr;
    }

    .short-box video, .saas-box video {
        height: 350px;
    }

    .thumbnails-section {
        padding: 50px 0;
    }

    .carousel-slide {
        min-width: 250px;
        margin: 0 8px;
    }

    .carousel-slide.is-center {
        transform: scale(1.05);
    }

    .carousel-slide:not(.is-center) {
        transform: scale(0.85);
        opacity: 0.4;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        padding: 8px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-indicators {
        margin-top: 20px;
        gap: 8px;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
    }

    .carousel-indicator.active {
        width: 24px;
    }

    .thumbnails-section h1 {
        font-size: 14px;
        padding: 8px 15px;
    }

    .modal-content {
        width: 95%;
    }

    .closeBtn {
        font-size: 28px;
        top: -30px;
    }

    .shorts-close, .saas-close {
        width: 35px;
        height: 35px;
        font-size: 25px;
    }

    .testimonials-section {
        padding: 30px 10px;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .review-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .nav-btn {
        padding: 8px 10px;
    }

    .about_dets .learn {
        font-size: 35px;
        line-height: 50px;
        margin-left: 0;
    }

    .about_para {
        width: 95%;
        font-size: 13px;
    }

    .more_dets {
        margin-top: 40px;
    }

    .more_dets .huss_img {
        height: 180px;
        width: 200px;
    }

    .faqs-section {
        padding: 40px 3%;
    }

    .faqs-section h1 {
        font-size: 2em;
    }

    .faq-item h3 {
        font-size: 1em;
        padding: 15px 18px;
    }

    .faq-item p {
        font-size: 0.95em;
    }

    .signup h1 {
        font-size: 14px;
        padding: 8px 15px;
    }

    .signup h2 {
        font-size: 18px;
        padding: 0 10px;
    }

    .form-container {
        padding: 15px;
    }

    input, select, textarea {
        padding: 10px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    #framemediaaa {
        font-size: 18px;
    }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
    .details_about h1 {
        font-size: 18vw;
    }

    .carousel-slide {
        min-width: 220px;
    }

    .about_dets .learn {
        font-size: 28px;
        line-height: 40px;
    }

    .more_dets .huss_img {
        height: 150px;
        width: 170px;
    }
}






