/* ---------------------- base style's-------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0f0f0ff2;
    color: #fff;
}

.ip-header .ip-loader svg path.ip-loader-circle {
    stroke: #202020 !important;
}

.ip-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.header_section {
    width: 100%;
    z-index: 9;
}

.headertop {
    width: 100%;
    background-color: #0F0F0F;
    height: 60px;
}

.socialicons {
    /* float: left; */
    margin: 0.7em 0;
    display: flex;
    justify-content: end;
}

.header-bottom {
    background: #0f0f0f6e;
}

#headerbottom {
	width:100%;
	/* background-color:rgba(2, 0, 0, 0.07); */
}

.header-bottom {
    transition: all 0.3s ease;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);

    animation: slideDown 0.3s ease;
}

/* Smooth slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-120%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky {
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
}

.header-bottom {
    height: 80px !important;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s ease,
                backdrop-filter 0.5s ease;
}

.logo-center img {
    height: 45px;

    transition: transform 0.5s ease, height 0.5s ease;
}

.sticky .logo-center img {
    height: 100px;
    transform: scale(0.95);
}

/* When sticky → shrink */
.sticky {
    height: 60px; /* smaller */
    padding: 5px 0;
}

.logo-center img {
    height: 45px;
    transition: all 0.3s ease;
}

.sticky .logo-center img {
    /* height: 35px;  shrink logo */
}

.sticky {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.sticky + .hero {
    margin-top: 80px;
}

/* When header becomes fixed */
.header-fixed {
    padding-top: 80px; /* same as header height */
}

.menu-btn {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ALL ARE LINES (NOT DOTS) */
.menu-btn span {
    height: 2px;
    background: white;
    display: block;
}

/* DIFFERENT WIDTHS (YOUR IDEA) */
.menu-btn span:nth-child(1) {
    width: 22px !important;
    height: 3px !important;
}

.menu-btn span:nth-child(2) {
    width: 14px !important;
    height: 3px !important;
}

.menu-btn span:nth-child(3) {
    width: 18px !important;
    height: 3px !important;
}

.close-btn {
    color: white;
    font-size: 25px;
    cursor: pointer;
    margin-bottom: 30px;
}

/* Different sizes = premium feel */
.menu-btn span:nth-child(1) {
    width: 10px;
    height: 10px;
}

.menu-btn span:nth-child(2) {
    width: 6px;
    height: 6px;
}

.menu-btn span:nth-child(3) {
    width: 10px;
    height: 10px;
}

.header-bottom .container {
    position: relative;
    height: 80px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
/*    background: #111;*/
	background: rgb(15 15 15);
    padding: 40px 20px;
    transition: 0.3s;
    z-index: 999;
	border-right: 1px solid rgb(19 19 19);
}

.side-menu a {
    display: block;
    color: white;
    margin-bottom: 20px;
    text-decoration: none;
    font-size: 18px;
}

.side-menu a:hover {
    color: #ffcc55;
}

.side-menu.active {
    left: 0;
}

.container {
    width: 90%;
    margin: auto;
}

.header {
    background: #0F0F0F;
    padding: 20px 0;
}

.nav {
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
}

.logo {
    display: flex;
    flex-direction: column;   
    align-items: center;
    text-align: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-top: 5px;
}

.logo-center {
    /* position: absolute;
    left: 50%;
    top: 50%;                  
    transform: translate(-50%, -50%);
    text-align: center; */
}

.logo-center img {
    height: 120px;
    /* margin-bottom: 6px; */
}

.logo-center div {
    font-size: 15px;
    letter-spacing: 1px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #BFBFBF;
}

.hero {
    position: relative; /* VERY IMPORTANT */
    height: 90vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5); /* darkness */
}

/* TEXT ABOVE OVERLAY */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 60px;
    font-family: 'Montserrat';
    letter-spacing: 2px;
}

.hero p {
    margin: 15px 0;
    color: #ccc;
}

.hero button {
    padding: 12px 30px;
    border: 1px solid #fff;
    background: transparent;
    color: white;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.hero button:hover {
    background: white;
    color: black;
}

.intro-section {
    padding: 120px 0;
    background: #111;
}

.intro-text {
    padding: 30px 0 120px 0;
}

.intro-text h2 {
    /* font-family: 'Playfair Display', serif; */
    /* font-size: 40px; */
    margin-bottom: 20px;
}

.intro-text p {
    max-width: 700px;
    margin: auto;
    color: #bbb;
    line-height: 1.8;
}

/* CATEGORIES */
.categories {
    padding: 120px 0;
    text-align: center;
}

.categories h3 {
    margin-bottom: 20px;
}

.categories ul {
    list-style: none;
    padding: 0;
}

.categories li {
    margin: 10px 0;
    font-size: 18px;
    color: #ddd;
    transition: 0.3s;
}

/* HOVER EFFECT */
.categories li:hover {
    color: #00e676;
    letter-spacing: 1px;
}

/* CONTACT BOX */
.contact-box {
    margin-top: 50px;
    text-align: center;
}

.contact-box p {
    color: #ccc;
    margin: 5px 0;
}

.products {
    padding: 60px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #1a1a1a;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

.card img {
    width: 100%;
}

.card:hover {
    transform: scale(1.05);
}

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;

    transition: transform 0.5s ease;
}

/* ZOOM EFFECT */
.category-card:hover img {
    transform: scale(1.1);
}

/* TEXT OVERLAY */
.category-card .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;

    background: rgba(0,0,0,0.6);
    color: white;
    text-align: center;

    font-size: 18px;
    letter-spacing: 1px;
}

.scrensht {
    height: 500px;
    overflow: hidden;
}

.scrensht-img  {
    position: relative; 
    overflow: hidden; 
    width: 100%; 
    height: 100%; 
    left: 0; 
    transition: .5s ease;
}

.scrensht-cont {
    position: relative;
    cursor: pointer;
    right: 100%;
    top: -100%;
    background-color: #111111;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: .5s ease;
}

.scrensht:hover .scrensht-img {
    left: 100%;
    height: 100%;
}

.scrensht:hover .scrensht-cont {
    right: 0;
    height: 100%;
}

.carousel-control-next, .carousel-control-prev {
    width: 5%;
    height: 5%;
    margin: auto 0;
}

.ai-img1 {
    /* height: 300px;  */
    background-image: url(../images/img1.jpeg); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ai-img2 {
    /* height: 300px;  */
    background-image: url(../images/img7.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ai-img3 {
    /* height: 300px;  */
    background-image: url(../images/img3.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ai-img4 {
    height: 300px; 
    background-image: url(../images/Screenshot5.jpg); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ai-img5 {
    /* height: 300px; */
    background-image: url(../images/img6.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ai-img6 {
    height: 300px;
    background-image: url(../images/Screenshot6.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #d3d3d347;
}
/* ----------------------- */

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 25px;
    padding-bottom: 25px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000000ed;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    padding: 0;
    width: 250px;
    max-width: 1200px;
}
.modal-content img {
	/* border: 3px solid #fff; */
}

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: #999;
    text-decoration: none;
}

.cursor {
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    /*color: rgb(0, 0, 0);*/
	color: #fff;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
	z-index: 9999;

}

.prev:hover, .next:hover {
    /*background-color: rgba(0, 0, 0, 0.8);*/
	background-color: #999;
    color: #fff;
}

.prev {
    left: 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.modal i {
    font-size: 30px;
}

/* -------------------------------------------------------------------------------------------------------------------------------- */

.mySlides img{
	height: 80vh;
    width: auto;
}

@media (max-width: 600px){
	.mySlides img{
        height: auto;
        width: 85vw;
    }
	.modal-content {
        background-color: transparent;
    }
}

/* .iconbox i:hover {
    color: #00e676;
    transition: 0.3s;
} */

.disabled-link {
    pointer-events: none;
    opacity: 0.4;
    cursor: default;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: white;

    border-radius: 50%;
    font-size: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999;
    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);

    transition: all 0.3s ease;
}
 
a.whatsapp-float {
    text-decoration: none;
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

.whatsapp-float {
    opacity: 0;
    visibility: hidden;
}

.footer {
    background: #000;
    text-align: center;
    padding: 30px 0;
}

.footer-p p {
    color: #ffffff5e;
}

