@font-face {
    font-family: twk thin;
    src: url(web\ fonts/TWKEverett-Thin.otf);
    font-display: swap;
}
@font-face {
    font-family: twk light;
    src: url(web\ fonts/TWKEverett-Light.otf);
    font-display: swap;
}
@font-face {
    font-family: twk ultralight;
    src: url(web\ fonts/TWKEverett-Ultralight.otf);
    font-display: swap;
}
@font-face {
    font-family: twk reg;
    src: url(web\ fonts/TWKEverett-Regular.otf);
    font-display: swap;
}
@font-face {
    font-family: twk medium;
    src: url(web\ fonts/TWKEverett-Medium.otf);
    font-display: swap;
}
@font-face {
    font-family: twk bold;
    src: url(web\ fonts/TWKEverett-Bold.otf);
    font-display: swap;
}
@font-face {
    font-family: twk extra;
    src: url(web\ fonts/TWKEverett-Extrabold.otf);
    font-display: swap;
}

:root{
    --main: #afc3c2;
    --dark: #4d827f;
    --black: #000;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    position: relative;
    min-height: 100vh;
    scroll-behavior: smooth;
    overflow-x: hidden;
}




/*? NAVBAR SECTION STARTS */

header{
    position: relative;
}

header nav{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin: 1rem 0.5rem;
    background: #afc3c2;
    border-radius: 5rem;
}
.logo-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}
.logo-sec img{
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 50%;
}
.logo-sec .txt{
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-sec .txt span{
    font-family: twk reg;
    text-transform: capitalize;
}

.navigation{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.navigation ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 0;
}
.navigation ul li{
    list-style-type: none;
}
.navigation ul li a{
    font-family: twk reg;
    text-decoration: none;
    color: black;
    letter-spacing: 0.05rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.2rem;
    cursor: pointer;
}

.right-nav-sec{
    display: flex;
    align-items: center;
    justify-content: center;
}

.talk-opt a{
    text-decoration: none;
    color: white;
    padding: 0.8rem 2rem;
    background: black;
    border-radius: 5rem;
    font-weight: 600;
    z-index: 5;
}

.talk-opt a:hover{
    cursor: pointer;
    color: white;
}


.ham{
    display: none;
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}
.ham i{
    font-size: 1.5rem;
    color: black;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
    
    header{
        padding: 0;
    }

    header nav{
        margin: 0.5rem 0rem;
        padding: 0.5rem;
    }
    
    .navigation{
        top: 60px;
        left: 50%;
        transform: translate(-50%,0);
        background: white;
        box-shadow: 0px 5px 5px rgba(0,0,0,0.1),
                    0px 15px 15px rgba(0,0,0,0.1);
        border-radius: 1rem;
        padding: 1rem 0.5rem;
        /* z-index: -1; */
        display: none;
        opacity: 0;
    }            
    .navigation ul{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1rem;
    }
    .navigation ul li{
        transform: translateX(-50px);
        opacity: 0;
    }            
    
    .ham{
        display: block;
    }

    .talk-opt a{
    text-decoration: none;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    background: black;
    border-radius: 5rem;
    font-weight: 600;
    margin-inline-end: 1rem;
    }
}
@media (min-width: 1024px) {
    
    .logo-sec .txt span{
        font-size: 1.2vw;
        font-weight: 500;
        text-transform: capitalize;
    }
    .navigation{
        display: block;
        opacity: 1;
    }    
    .navigation ul{
        gap: 1.2rem;
    }
    .navigation ul li a{
        font-size: 0.7rem;
    }
}
@media (min-width: 1444px) {

    .navigation{
        display: block;
        opacity: 1;
    } 
    .navigation ul{
        gap: 3rem;
    }
    .navigation ul li a{
        font-size: 1rem;
    }

    .logo-sec .txt span{
        font-size: 1rem;
        font-weight: 500;
        text-transform: capitalize;
    }

}

/*? NAVBAR SECTION END */

#home{
    transition: all 0.2s;
    transition-delay: 0.05s;
}
#home.move-down{
    margin-top: 260px;
}

.hero-section {
    position: relative;
    height: 70vh;
    z-index: -99;
}

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-timing-function: ease-in-out;
  }

  .swiper-slide img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .swiper-text{
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    font-family: twk bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #afc3c243;
    backdrop-filter: blur(3px);
  }
#about-product{
    position: relative;
    min-height: 100vh;
    margin-top: 5rem;
}

.abt-head{  
    position: relative;
}
.abt-head h2{
    font-family: twk extra;
    font-size: 2.5rem;
    text-align: center;
    color: var(--black);
}
.abt-head p{
    font-family: twk reg;
    font-size: 1.15rem;
    text-align: center;
}
.product-info{
    height: 25rem;
    position: relative;
    border-radius: 2rem;
}
.product-info .image-sec{
    width: 95%;
    height: 95%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 2rem;
}
.product-info .image-sec img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
}
.product-info:hover .image-sec img{
    transform: scale(1.3);
}
.product-info .info{
    width: 95%;
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translate(-50%, 0%);
    background: #afc3c29d;
    backdrop-filter: blur(40px);
    border-radius: 2rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.product-info .info h3{
    font-family: twk medium;
    font-size: 2rem;
    color: var(--black);
}
.product-info .info p{
    font-family: twk light;
    font-size: 1rem;
    color: var(--black);
    text-align: center;
}
.category{
    position: relative;
}
.category h2{
    font-size: 2.5rem;
    font-family: twk bold;
}
.category .my-swiper{
    width: 100%;
    height: 20rem;
}
.category .swiper .swiper-slide{
   display: flex;
   flex-direction: column;
   width: calc(100% / 3);
   height: 100%;
   
}
.category .swiper .swiper-slide img{
    width: 100%;
    height: 15rem;
    position: static;
    object-fit: cover;
}
.category .swiper .swiper-slide .swiper-txt{
    position: static;
    font-size: 1.2rem;
    font-family: twk medium;
}
#services{
    position: relative;
    min-height: 100vh;
}
#services .container{
    background: url(assets/camera\ \(11\).jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-image: fill 0 linear-gradient(to bottom, white 5%, transparent 30%);
}
.service-head{
    margin: 10rem 0rem;
}
.service-head h2{
    font-size: 2.5rem;
    font-family: twk extra;
    color: var(--black);
    text-align: center;
}
.service-head p{
    font-family: twk reg;
    font-size: 1.15rem;
    text-align: center;
}

.ser-info{
    position: relative;
    padding: 1rem;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(30px);
    margin: 2rem 11px;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.ser-info:last-child{
    margin-block-end: 10rem;
}
.ser-info .icon-sec{
    margin-block-end: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: var(--main);
    border-radius: 50%;
    box-shadow: inset -5px -5px 6px rgba(0,0,0,0.3), inset 5px 5px 6px rgba(255,255,255,0.2), 5px 5px 6px rgba(0,0,0,0.3), -5px -5px 6px rgba(255,255,255,0.15);
}
.ser-info .icon-sec i{
    display: inline-block;
    font-size: 2.5rem;
    animation: iconAnimate 3s linear infinite;
    color: black;
}
@keyframes iconAnimate {
    0%{
        transform: rotateY(0deg) scale(1);
        transform-style: preserve-3d;
    }
    50%{
        transform: rotateY(360deg) scale(1.2);
        transform-style: preserve-3d;
    }
    100%{
        transform: rotateY(0deg) scale(1);
        transform-style: preserve-3d;
    }
}
.service-info h3{
    font-family: twk bold;
    font-size: 2rem;
}
.service-info p{
    font-family: twk light;
    font-size: 1.2rem;
}
.go-icon{
    width: 2.5rem;
    height: 2.5rem;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: rotate(-45deg);
}
.go-icon svg{
    width: 1rem;
    color: #fff;
}

/*? <------- Networking Section Starts Here -------> */

       
#networking-info {
    background-color: #f8f9fa;
    padding: 80px 0;
}

#networking-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

#networking-info .lead {
    font-size: 1.25rem;
    color: #666;
}

.card{
    border: 2px solid #323232;
    border-radius: 1rem;
    box-shadow: 5px 5px 0px 0px #323232,
                7px 7px 0px 0px #323232;
    transition: transform 0.3s ease;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/*? <--------- Networking Section Ends Here ---------> */


#features{
    margin-block: 2rem;
}
.key-head h2{
    font-size: 2.5rem;
    font-family: twk extra;
    color: var(--black);
    text-align: center;
}

.sec-1 .abt-features{
    background: url(assets/hd.jpg);
}
.sec-2 .abt-features{
    background: url(assets/night-vision.jpg);
}
.sec-3 .abt-features{
    background: url(assets/cloud-storage.jpg);
}
.features-sec .abt-features{
    position: relative;
    height: 20rem;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-image: fill 0 linear-gradient(to top, rgba(0,0,0,0.6) 10%, transparent 80%);
}

.features-sec h3{
    font-family: twk bold;
    text-align: center;
    color: white;
    text-shadow: 3px 3px 4px rgba(0,0,0,0.5);
}
.features-sec p{
    font-family: twk light;
    font-size: 1rem;
    text-align: center;
    color: white;
    text-shadow: 3px 3px 4px rgba(0,0,0,0.5);
}
#testimonial{
    position: relative;
}
.test-head h2{
    text-align: center;
    font-size: 2.5rem;
    font-family: twk extra;
    color: var(--black);
}
.test-head p{
    font-family: twk reg;
    font-size: 1.15rem;
    text-align: center;
}
.left-sec{
    height: 11rem;
    position: relative;
}
.left-sec i{
    display: block;
    width: 3rem;
    height: 3rem;
    background: var(--dark);
    clip-path: polygon(50% 0%, 45% 45%, 0% 50%, 45% 55%, 50% 100%, 55% 55%, 100% 50%, 55% 45%, 50% 0%);
    position: absolute;
    right: 50%;
    bottom: 10%;
}
.left-sec h3{
    font-size: 3rem;
    font-family: twk bold;
    color: var(--dark);
}
.right-sec{
    width: 100%;
    height: 11rem;
}

.testimonial-swiper .swiper-slide{
    width: 100%;
    height: 100%;
}
.comment-sec{
    width: 100%;
    font-size: 1.3rem;
    text-align: left;
    font-family: twk reg;
}
.user-sec{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-block-start: 2rem;
    position: relative;
}
.user-sec .user{
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-sec .user span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 2px solid black;
    border-radius: 50%;
}
.user-pf{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 3rem;
}
.user-pf span{
    display: block;
    font-size: 0.9rem;
    font-family: twk bold;
}
.user-pf p{
    font-size: 0.8rem;
    opacity: 0.6;
}
.user-sec .icn{
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translate(0%, -50%);
    background: var(--main);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-sec .icn i{
    font-size: 1.5rem;
}

/*? contact section starts */

.cont-head h2{
    text-align: center;
    font-size: 2.5rem;
    font-family: twk extra;
    color: var(--black);
}
.cont-head p{
    font-family: twk reg;
    font-size: 1.15rem;
    text-align: center;
}

/* Form Container */
.form-container {
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: 12px;
    animation: fadeIn 0.8s ease-out;
  }
  
  /* Fieldset and Legend */
  .form fieldset {
    border: 2px solid var(--dark);
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
    position: relative;
  }
  
  .form legend{
    max-width: 13rem;
    font-size: 2rem;
    color: var(--dark);
    font-weight: bold;
    padding-inline: 10px;
    position: absolute;
    top: -30px; /* Moves the legend upward */
    left: 10px; /* Positions legend at the top left */
    background-color: #fff; /* Matches the form background */
    border-radius: 5px;
  }
  
  /* Form Group with Floating Labels */

  .form-group {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 20px;
    width: 100%;
  }
  
  input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    resize: none;
    overflow: hidden;

  }
  
  textarea {
    resize: none;
  }
  
  input:focus, textarea:focus {
    border-color: var(--dark);
  }
  
  /* Floating Label */
  .floating-label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 1em;
    color: #999;
    transition: 0.3s ease;
    pointer-events: none;
  }
  
  input:focus + .floating-label,
  textarea:focus + .floating-label,
  input:not(:placeholder-shown) + .floating-label,
  textarea:not(:placeholder-shown) + .floating-label {
    top: -10px;
    left: 10px;
    font-size: 0.85em;
    color: var(--dark);
    background: #fff;
    padding: 0 4px;
  }
  
  /* Submit Button */
  .submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, var(--dark), var(--main));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    form legend {
      font-size: 1.2em;
    }
  
    input, textarea {
      font-size: 0.9em;
    }
  
    .submit-btn {
      font-size: 0.95em;
      padding: 10px;
    }
  }
  
  @media (max-width: 480px) {
    form legend {
      font-size: 1.1em;
    }
  
    input, textarea {
      font-size: 0.85em;
      padding: 10px;
    }
  
    .submit-btn {
      font-size: 0.9em;
      padding: 8px;
    }
  }
  
  /* Fade-in Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.detail-head{
    font-size: 2.5rem;
    font-family: twk bold;
}
.detail-para{
    font-size: 1.1rem;
    font-family: twk light;
    margin-block: 2rem;
}

.main-detail{
    position: relative;
}
.main-detail .row{
    row-gap: 2rem;
}
.info{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0rem 1rem;
}
.detail-icn{
    width: 3rem;
    height: 3rem;
    background: var(--main);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-icn i{
    font-size: 1.5rem;
    color: var(--black);
}
.detail{
    height: 3rem;
}
.detail h4{
    font-size: 1.15rem;
    color: var(--black);
}
.detail p{
    font-size: 0.6rem;
    font-family: twk light;
    color: var(--black);
}
.main-detail .social{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social h5{
    font-size: 1.3rem;
    font-family: twk reg;
    color: var(--black);
}
.social ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.social ul li{
    list-style: none;
}
.social ul li a{
    text-decoration: none;
}
.social ul li a i{
    color: var(--black);
    font-size: 1.5rem;
}

.loc-head{
    font-size: 2.5rem;
    font-family: twk bold;
    text-align: center;
}
.location{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.location iframe{
    width: 100%;
}
.footer{
    background: var(--main);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer p{
    font-family: twk reg;
    font-size: 1.15rem;
    color: var(--black);
    margin-block-start: 2rem;
}

@media (max-width: 450px) {

    body{
        overflow-x: hidden;
    }
    #home{
        overflow: hidden;
    }
    #about-product{
        overflow: hidden;
    }
    #services{
        overflow: hidden;
    }
    #networking-info{
        overflow: hidden;
    }
    #features{
        overflow: hidden;
    }
    #testimonial{
        overflow: hidden;
    }
    #contact{
        overflow: hidden;
    }

    header nav{
        margin: 0.5rem -0.5rem;
        height: 50px;
    }
    .logo-sec img{
        width: 2rem;
        height: 2rem;
    }
    .logo-sec .txt span{
        font-size: 0.65rem;
    }

    .talk-opt a{
        font-size: 0.6rem;
        padding: 0.5rem 0.7rem;
    }
    .ham{
        width: 2rem;
        height: 2rem;
    }
    .ham i{
        font-size: 1rem;
    }
    .navigation ul{
        gap: 0.5rem;
    }
    .navigation ul li a{
        font-size: 0.8rem;
    }
    .hero-section{
        height: 40vh;
    }
    .swiper {
        width: 100%;
        height: 100%;
    }
    .swiper-slide img {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .swiper-text{
        text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
        font-size: 1.5rem;
        background: #afc3c223;
    }

    #about-product{
        position: relative;
        min-height: 100vh;
        margin-top: 2rem;
    }

    .abt-head h2{
        font-size: 1.5rem;
    }
    .abt-head p{
        font-size: 0.8rem;
    }
    .product-info{
        height: 20rem;
    }
    .product-info .info{
        padding: 0.5rem;
        gap: 0rem;
    }
    .product-info .info h3{
        font-size: 1.25rem;
        text-align: center;
    }
    .product-info .info p{
        font-size: 0.7rem;
    }
    .category h2{
        font-size: 1.5rem;
        font-family: twk extra;
    }
    .category .my-swiper{
        width: 100%;
        height: 15rem;
    }
    .category .swiper .swiper-slide{
       display: flex;
       flex-direction: column;
       width: calc(100% / 3);
       height: 100%;
    }
    .category .swiper .swiper-slide img{
        width: 100%;
        height: 10rem;
        position: static;
        object-fit: cover;
    }

    .category .swiper .swiper-slide .swiper-txt{
        position: static;
        font-size: 0.8rem;
        font-family: twk medium;
    }
    #services .container{
        background: url(assets/outdoor.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .service-head{
        margin: 2rem 0rem;
    }
    .service-head h2{
        font-size: 1.5rem;
    }
    .service-head p{
        font-size: 0.7rem;
    }
    .ser-info .icon-sec{
        width: 3.5rem;
        height: 3.5rem;
    }
    .ser-info .icon-sec i{
        font-size: 1.5rem;
    }
    .service-info h3{
        font-size: 1.5rem;
    }
    .service-info p{
        font-size: 0.8rem;
        font-family: twk reg;
    }

    .key-head h2{
        font-size: 1.5rem;
    }
    .features-sec .abt-features{
        height: 15rem;
        margin-block-end: 0.5rem;
        padding: 0.5rem;
    }
    .features-sec h3{
        font-size: 1.5rem;
    }
    .features-sec p{
        font-size: 0.8rem;
        font-weight: twk reg;
    }
    .test-head h2{
        font-size: 1.5rem;
    }
    .test-head p{
        font-size: 0.8rem;
    }
    .left-sec{
        height: 8rem;
    }
    .left-sec i{
        width: 1.5rem;
        height: 1.5rem;
    }
    .left-sec h3{
        font-size: 1.65rem;
    }
    .right-sec{
        height: 15rem;
        /* background: red; */
    }
    .comment-sec{
        font-size: 1rem;
    }
   
    .user-pf span{
        font-size: 0.8rem;
    }
    .user-pf p{
        font-size: 0.65rem;
    }
    .testimonial-swiper .swiper-slide{
        border-radius: 1rem;
        padding: 0.3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: inset -3px -3px 5px rgba(0, 0, 0, 0.2),
                    inset 3px 3px 5px white;
    }
    .cont-head h2{
        font-size: 1.5rem;
    }
    .cont-head p{
        font-size: 0.8rem;
    }
    .form-container{
        width: 100%;
        padding: 0.5rem;
    }
    .detail-head{
        font-size: 1.5rem;
    }
    .detail-para{
        font-size: 0.8rem;
        margin-block: 1rem;
    }
    .social h5{
        font-size: 1rem;
    }
    .loc-head{
        font-size: 1.5rem;
    }
    .footer p{
        font-size: 0.85rem;
    }
    #networking-info h2{
        font-size: 1.5rem;
    }
    #networking-info p{
        font-size: 0.8rem;
    }


}