:root {
    --animate-duration: 2s;
}
body, html {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    height: 100vh;
}
a{
    cursor: pointer;
    text-decoration: none;
}
li{
    list-style: none;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #0000003b;
}
::-webkit-scrollbar-thumb {
    background-color: rgb(30, 64, 255); 
    border-radius: 6px; 
    border: 3px solid #1b1b1b; 
}
html {
    scrollbar-width:thin;
    scrollbar-color: rgb(3, 55, 224) #1b1b1b00;
}
::-webkit-scrollbar-button {
    background-color: rgb(3, 55, 224);
    height: 16px;
    width: 16px;
}
.container{
    /* background: linear-gradient(45deg, #c0c0c0, #9bbbff96, #b7b6f7b0); */
    background-color: #d4d4d4;
    width: 100% !important;
    padding: 0;
    max-width: 100%;
}
#slide1{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    padding-bottom: 0;
    background-image: url("https://barkingbirdmedia.com/wp-content/uploads/2018/10/website-background-patterns-png-4.png");
}
#slide2{
    background-color: rgb(201, 201, 201);
}
.heroImage{
    width: 40%;
}
.heroImage img{
    width: 100%;
}
.slide1content{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide1content h1,h2,h3{
    margin: 0;
    font-size: 50px;
}
.slide1content h1{
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #000153;
}
.slide1content h2{
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #616161;
}
.slide1content h3{
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #0018a0;
}
.header{
    background-color: rgba(228, 228, 228, 0.973);
    padding: 10px 0;
    width: 100%;

}
.navbar{
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}
.navbar a{
    margin-top: 10px;
    margin: 10px 15px; 
    font-weight: 600;
    letter-spacing: 0.1em;
    color: linear-gradient(to rigth, #cecece, #ffffff, #afa2a2);
    transition: all ease 0.2s;
    color: #00043a;
}
.navbar a:hover{
    color: rgb(0, 85, 241);
}
.b1{
    background-color: transparent;
    border: 2px solid #777d86;
    color: rgb(72, 75, 119);
    border-radius: 20px;
    padding: 5px 12px;
    position: absolute;
    right: 20px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.b1:hover{
    background-color: #c9d7f3;
    color: #000000;
}
.logo{
    padding: 0;
    position: absolute;
    left: 50px;
    display: flex;
}
.logo h2{
    margin: 0;
    font-family: "Playfair Display", serif;
    color: rgb(0, 56, 129);
    font-weight: 500;
    font-size: 32px;
}
.line {
    content: '';
    width: 200px;
    height: 8px;
    background-color: #000153;
    margin: 16px 0;
    padding-left: 10px;
    transform: skew(20deg);
}
.slide1content p{
    text-align: justify;
    color: #6b6a6d;
    font-weight: 600;
}
.wrapper1{
    background-color: #ccced4;
    padding-top: 16px;
    background-image: url("https://www.suretiimf.com/wp-content/uploads/2020/06/transparent-background-pattern-png-4-1024x512.png");
}
.products{
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    justify-content: center;
}
.product {
    display: flex;
    border-radius: 6px;
    margin: 10px;
    height: 200px;
    max-width: 400px;
    position: relative; /* Needed for the hover effect */
    overflow: hidden; /* To ensure the hover effect is contained */
    z-index: 0;
    background: linear-gradient(to right, #1b1b1b, #696969, #8a8a8a);
    transition: all 0.3s ease-out; /* Smooth transition for color changes */
}

.product:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: #001141;
    border-radius: 50%;
    transition: transform 0.5s ease;
    transform: scale(0);
    transform-origin: top left;
}

.product:hover:before {
    transform: scale(1);
}


.product-text span,
.product-text p,
.product-text h4 {
    transition: color 0.3s ease-out;
}

.product:hover .product-text span {
    color: #ffffff;
}

.product:hover .product-text p {
    color: #ffffff;
}

.product:hover .product-text h4 {
    color: #ffffff;
}

.product-text{
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    font-size: x-large;
    font-weight: 600;
}
.product-text span{
    font-size: x-large;
    font-weight: 900;
    color: #cececec2;
    font-family: "Bebas Neue", sans-serif;
    margin-bottom: 8px;
}
.product-text p{
    margin-bottom: 2px;
    color: #e9e9e9;
}
.product-text h4{
    font-weight: 600;
    color: #d5e6ff;
}
.product-image{
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 6px 12px;
}
.product-image img{
    min-height: 120px;
    max-height: 180px;
    max-width: 200px;
    margin: auto auto;
}
#p1{
    background: linear-gradient(to right, #1b1b1b, #696969, #8a8a8a);
}
#p2{
    background: linear-gradient(to right, #c28e00, #e4b724, #e6b856);
}
#p3{
    background: linear-gradient(to right, #4c9e00, #47b100, #48ff00);
}
#p4{
    background: linear-gradient(to right, #9b0000, #c50000, #ee0101);
}
#p5{
    background: linear-gradient(to right, #b66d00, #c55f00, #ee7301);
}
#p6{
    background: linear-gradient(to right, #b60064, #c5005c, #ee01bb);
}
#p7{
    background: linear-gradient(to right, #004fb6, #005cc5, #0183ee);
}
#p8{
    background: linear-gradient(to right, #0fb600, #00c54c, #01ee01);
}
#p9{
    background: linear-gradient(to right, #006875, #00bfc5, #01d2ee);
}
.wrapper2{
    background-image: url("https://th.bing.com/th/id/R.72d3986a53c744e4fe72bc0cbdcfb7a3?rik=n0lfpaV0JwXPDg&riu=http%3a%2f%2fwww.pngmart.com%2ffiles%2f13%2fElegant-Pattern-PNG-Transparent-Image.png&ehk=J9WUCdtnP9Oa14s0syy34GFeKsoJjY9g1RZGlnFiWlc%3d&risl=&pid=ImgRaw&r=0");
}
.supports{
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    padding: 16px 0;
}
.support{
    width: 300px;
    display: flex;
    border-radius: 6px;
    margin-right: 12px;
    background-color: #f3f3f39d;
    font-size: large;
}
.supportIcon{
    font-size: 2.6rem;
    padding: 10px;
    color: #5f4600;
}
.supportText{
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    color: #707070;
}
.supportText p{
    margin-bottom: 5px;
    font-weight: 600;
    color: #000a35;
}
.supportText span{
    font-size: small;
}
.features{
    margin: 25px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1500px;
}
.feature {
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(to right, #ffffff, #e5f0ff);
    margin: 12px;
    border-radius: 6px;
    text-align: center;
    width: 350px;
    justify-content: center;
    padding: 12px;
    transition: all 0.5s ease-in;
    overflow: hidden;
}
.feature:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: 4px solid #000c77;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition: clip-path 0.5s ease-in-out;
}

.feature:hover:before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.feature:after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: transform 0.5s ease-in-out;
    transform: rotate(45deg) translate(-50%, -50%);
}

.feature:hover:after {
    transform: rotate(45deg) translate(0, 0);
}

.feature h2{
    font-size: x-large;
    font-weight: 600;
    margin-bottom: 16px;
}
.pt1c{
    display: flex;
    flex-direction: column;
}
.pt1{
    display: flex;
    margin-bottom: 12px;
}
.pt1-icon{
    margin-right: 12px;
    color: #206400;
    font-size: 1.1rem;
    font-weight: 600;
}
.pt1-text{
    text-align: left;
    letter-spacing: 0.02em;
}
.assembled{
    display: flex;
    background-color: #dddddd;
    width: 100%;
    margin: 25px auto;
}
.assembled-left{
    width: 500px;
}
.assembledImage{
    width: 100%;
    max-width: 500px;
    border-radius: 0 50% 50% 0;
}
.assembledImage img{
    width: 100%;
    border-radius: 0 150px 150px 0;
}
.assembled-right{
    width: 50%;
    font-size: x-large;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 16px 25px;
    text-align: justify;
}
.assembled-right p {
    background: linear-gradient(90deg, rgb(167, 0, 0), rgb(184, 98, 0), rgb(0, 128, 179), green, blue, indigo, violet);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorChange 5s infinite;
}

@keyframes colorChange {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.container1{
    display: grid;
    background-color: transparent;
    background-image: url("https://th.bing.com/th/id/OIP.pzTsy5rsYURP4dlN7EHQiQHaDt?rs=1&pid=ImgDetMain");
}
.cards{
    display: flex;
    margin: 0 auto;
}
.card{
    width: 200px;
    /* background: linear-gradient(45deg, #dfe8ff, #cce2ff, #9f8ba1); */
    background: transparent;
    margin: 16px 0;
    border: none;
    border-right: 3px solid #4a4d58b7;
    
    border-radius: 0px;
    padding: 16px;
    text-align: center;
}
.card h2{
    font-size: 32px;
    font-weight: 600;
    color: #000153;
}
.card h3{
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.card:last-child{
    border: 0px;
}
.container3{
    background-color: #d6d6d6;
    background-image: url("https://www.f-in.gr/wp-content/uploads/pattern.png");
    padding-top: 20px;
}
.brandContainer{
    display: flex;
    background-color: #ebebeb81;
    margin: 0 auto;
    width: 90%;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
  }
  .container3 h4{
    font-weight: 500;
    text-align: center;
    color: #000c77;
  }
  .brandContent{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 16px;
  }
  .logo-slider{
    white-space: nowrap;
    display: flex;
  }
  .brandContent img{
    height: 70px;
  }
  @keyframes slide {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
  }
.footer{
    /* background-color: #0e0d0d4f; */
    padding: 100px 0 30px;
    background: linear-gradient(to right, #00093C, #2d0b00);
    width: 100%;
    color: #fff;
    font-size: 14px;
}
.footer .logo{
    position: relative;
    left: 0;
    margin-bottom: 20px;
}
.footer .logo h2{
    color: #fff;
}
.frow{
    width: 85%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.fcolumn{
    flex-basis: 25%;
    padding: 12px;
}
.fcolumn h3 {
    width: max-content;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}
.fcolumn h4 {
    font-size: small;
}
.fcolumn p{
    margin: 0;
}
.fcolumn ul{
    padding: 0;
}
.fcolumn li{
    margin-bottom: 10px;
}
.fcolumn li a{
    color: #fff;
}
.email-id{
    width: max-content;
    margin: 12px 0 !important;
    border-bottom: 2px solid #ccc;
}
.underline{
    width: 100%;
    border-radius: 3px;
    background-color: #676767;
    height: 5px;
    position: absolute;
    top: 30px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 15px;
    background-color: #fff;
    height: 100%;
    border-radius: 3px;
    position: absolute;
    left: 10px;
    top: 0;
    animation: f-animate 2s linear infinite;
}
@keyframes f-animate{
    0%{
        left: 20px;
    }
    100%{
        left: 100%;
    }
}
.footer h3{
    font-size: medium;
}
.counter{
    text-align: center;
    display: flex;
    margin: 12px auto;
    justify-content: center;
}
.footer hr{
    width: 90%;
    border-radius: 5px;
    height: 3px;
    background-color: #ccc;
    margin: 10px auto;
}
.copyright{
    text-align: center;
    font-size: 16px;
}
.wave-box{
    --mask:
    radial-gradient(100.78px at 50% 137.5px,#000 99%,#0000 101%) calc(50% - 100px) 0/200px 100%,
    radial-gradient(100.78px at 50% -87.5px,#0000 99%,#000 101%) 50% 50px/200px 100% repeat-x;
  -webkit-mask: var(--mask);
          mask: var(--mask);
          height: 100px;
          background-color: #00013f;
}
.wrapper3{
    background-color: #f0f0f0c4;
    padding: 20px;
}
#u1{
    margin: 20px auto;
    padding-bottom: 5px;
    position: relative;
    max-width: 200px;
}
.cunderline::before{
    border-radius: 8px;
    bottom: 0;
    content: "";
    height: 8px;
    bottom: -2px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    position: absolute;
    width: 24px;
    background: #0099ff;
    background: #00152c;
}
.cunderline::after{
    border-radius: 8px;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    right: 0px;
    margin: 0 auto;
    position: absolute;
    width: 150px;
    background: #0099ff;
    background: #00152c;
}
.swiper {
    width: 100%;
    height: 100%;
    margin: 20px auto;
  }
  #s1{
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 20px auto;
  }
  .swiper-pagination-bullet{
    width: 10px;
    border-radius: 0;
    height: 2px;
  }
  .review {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #cbcedb;
    padding: 16px;
    border-radius: 6px;
    font-size: larger;
    font-weight: 500;
    background-image: url('https://img.freepik.com/premium-vector/abstract-seamless-vector-background-white-gray-repeatable-texture-polygon-endless-pattern_547648-3168.jpg?w=360');
    height: 250px;
    margin: 0 auto;
}
.swiper-slide .review:nth-child(even) {
    border-top: 10px solid #946500;
}

.customer-image {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    overflow: hidden;
}
.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.customer-rating p {
    padding: 0;
    margin: 0;
}
.stars {
    display: flex;
    justify-content: center;
}
.star {
    font-size: 2rem;
    color: rgb(0, 82, 206);
    cursor: pointer;
}
.notstar{
    font-size: 2rem;
    color: rgb(160, 160, 160);
    cursor: pointer;
}
.customer-name h3 {
    margin: 0;
    font-size: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.788); /* Blue background with 50% opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.6em;
    text-align: center;
}
.overlay-text{
    max-width: 1500px;
    padding: 18px;
}
.wrapper4{
    max-width: 1500px;
    padding: 16px;
    display: flex;
    justify-content: center;
}
.wrapper4 iframe{
    width: 85%;
    margin: 0 auto;
    height: 300px;
    border-radius: 8px;
}
/* Basic styling for the custom alert box */
.custom-alert {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.custom-alert-content {
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 12px;
    background-color: #000153;
    color: #fff;
}
.custom-alert-content p {
    font-size: 18px;
    color: #ffffff !important;
    font-weight: 500;
    margin: 2px 0;
}
.loader{
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: #e5f1f5;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
}
.loader img{
    width: 200px;
    height: 200px;
}