*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}
html,body{
	width:100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body{
	margin:0;
    
    background:#f5f5f5;
}


/* HEADER */

header{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    padding:25px 60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:transparent;

    z-index:1000;
}


.logo {
    font-size: 28px;
    font-weight: bold;
    color: #0b4f8a;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #0b4f8a;
	font-size: 18px;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    background-color: #0b4f8a;
    color: white;
}

/* Dropdown */
.dropdown {
    position: relative;
	display: inline-block;
	margin-left:0;
	padding-bottom: 0;
}
/* MODERN DROPDOWN */
.dropdown-content {

    display:none;

    position:absolute;

    top:100%;

    left:0;

    min-width:320px;

    background:
    rgba(255,255,255,0.18);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,0.25);

    border-radius:18px;

    overflow:visible;

    box-shadow:
    0 8px 30px rgba(0,0,0,0.12);

    z-index:1000;
	white-space: nowrap;
}
/* DROPDOWN LINKS */
.dropdown-content a{

    display:block;

    padding:16px 24px;

    color:white;

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    transition:0.3s;
}

.dropdown-content a:hover{

    background:
    rgba(99,230,255,0.25);

    color:#63e6ff;

    padding-left:30px;
}
.dropdown-content a:hover {
    background-color: #1565c0;
}
/*SHOW MENU*/

.dropdown:hover .dropdown-content {
    display: block;
}

/* HERO */
.hero{
    min-height:100vh;

    display:flex;

    align-items:center;

    padding:120px 70px 70px;

    background:

    linear-gradient(
        to right,
        rgba(15,23,42,0.82),
        rgba(11,79,138,0.55)
    ),

    url("web-images/hero.jpg"),

    linear-gradient(
        135deg,
        #0f172a,
        #0b4f8a,
        #2563eb
    );

    background-size:cover;

    background-position:center;
}

.hero-text{
    max-width:720px;
    color:white;
}

.label{
    font-size:14px;
    letter-spacing:3px;
    font-weight:bold;
    color:#00b4d8;
    margin-bottom:18px;
}

h1{
    font-size:64px;
    line-height:1.05;
    margin-bottom:25px;
}

.intro{
    font-size:22px;
    line-height:1.6;
    margin-bottom:35px;
}

.btn{
   background:#63e6ff;

    color:#003566;

    padding:14px 28px;

    border-radius:14px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    display:inline-block;

    transition:0.3s;

    box-shadow:
    0 5px 12px rgba(0,0,0,0.08);
}

/* HOVER */
.btn:hover{

    background:#48cae4;

    color:white;

    transform:translateY(-3px);
}
/* HERO SLIDER */
.hero-slider{

    height:100vh;

    position:relative;

    overflow:hidden;
}
.slide::after{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    background:rgba(0,0,0,0.35);
}

nav a{

    color:white;
}
.logo img{

    width:180px;

    height:auto;
}

/* FEATURED */

.featured{
    padding:100px 70px;

}

.featured h2,
.contact h2{
    font-size:44px;
    margin-bottom:45px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.card{
    background:white;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.card h3{
    padding:25px 25px 10px;
    font-size:22px;
}

.card p{
    padding:0 25px 20px;
    color:#555;
    line-height:1.6;
}

.card a{
    display:block;
    padding:0 25px 25px;
    color:#0077b6;
    font-weight:bold;
    text-decoration:none;
}

/* SPLIT SECTION */
.split{
    min-height:90vh;
    display:flex;

    align-items:center;

    padding:100px 70px;

    background:
    linear-gradient(
        rgba(255,255,255,0.75),
        rgba(255,255,255,0.75)
    ),

    url("web-images/innovation.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
}
.split h2{
	font-size: 40px;
	line-height: 1.2;
	margin-bottom: 40px;
	color: #111;
}
.split p{
	font-size: 25px;
	line-height: 2;
	margin-top: 30px;
	margin-bottom: 60px;
	color: #333;
	max-width: 950px;
}

/* CONTACT HERO */
.contact-modern{
    min-height:100vh;
    background:#061426;
    color:white;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    padding:120px 70px 80px;
}

.contact-left h1{
    font-size:clamp(55px,7vw,110px);
    line-height:1.05;
    font-weight:300;
    margin-bottom:40px;
}

.contact-left h1 strong{
    font-weight:800;
}

.contact-left form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-left input,
.contact-left textarea{

    width:100%;

    padding:18px 22px;

    background:rgba(255,255,255,0.08);

    border:2px solid rgba(99,230,255,0.35);

    border-radius:14px;

    color:white;

    font-size:16px;

    outline:none;

    transition:0.3s ease;

    backdrop-filter:blur(8px);
}





.contact-left input:focus,
.contact-left textarea:focus{

    border-color:#63e6ff;

    box-shadow:
    0 0 15px rgba(99,230,255,0.4);

    background:rgba(255,255,255,0.12);
}


.contact-left input::placeholder,
.contact-left textarea::placeholder{

    color:rgba(255,255,255,0.7);
}

.contact-left textarea{
    height:140px;
    resize:none;
}

.contact-left button{
    width:180px;
    padding:16px;
    border:none;
    background:#63e6ff;
    color:#003566;
    font-weight:bold;
    cursor:pointer;
}

.contact-right{
    padding-top:80px;
}

.contact-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#f07b8c;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:30px;
}

.small-title{
    font-size:11px;
    color:#8fa0b3;
    letter-spacing:2px;
    margin-top:25px;
    margin-bottom:8px;
}

.contact-right p{
    font-size:20px;
    margin-bottom:10px;
}

@media(max-width:900px){
    .contact-modern{
        grid-template-columns:1fr;
        padding:100px 25px 60px;
    }
}

/* FOOTER */
footer{
    background:#f5f5f5;
	padding:70px 60px 30px;
    color:cadetblue;
    text-align:center;
    padding:30px;
}

/* MOBILE */
@media(max-width:900px){

    header{
        padding:18px 25px;
        flex-direction:column;
    }

    nav{
        margin-top:15px;
    }

    nav a{
        margin:8px;
        display:inline-block;
    }

    .hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    background:
    linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),

    url("web-images/hero.jpg.jpg");

    background-size:cover;

    background-position:center;
}

    h1{
        font-size:40px;
    }

    .grid,
    .split{
        grid-template-columns:1fr;
    }

    .featured,
    .split,
    .contact{
        padding:70px 25px;
    }
}
/* FOOTER */
.contact-style-footer{
    background:linear-gradient(
        to bottom,
        #0f172a,
        #0b4f8a
    );

    color:white;
    padding:70px 80px;
    text-align:left;
}

.contact-style-footer img{
    width:120px;
    margin-bottom:40px;
}

.footer-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f4a6c1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:35px;
}

.footer-title{
    font-size:22px;
    letter-spacing:3px;
    font-weight:bold;
    margin-top:30px;
}

.contact-style-footer p{
    font-size:22px;
    line-height:1.6;
    margin-bottom:10px;
}

.copyright{
    margin-top:50px;
    font-size:16px !important;
    color:#cbd5e1;
}
.products{
    padding:80px 50px;
}

.products h2{
    font-size:50px;
    margin-bottom:60px;
}

.grid{
    display:flex ;
    gap:0 !important;
    justify-content:center !important;
    align-items:stretch !important;
}

.card{
    width:auto!important;
    background:white !important;
    padding:0 30px 30px !important;
    box-shadow:0 5px 18px rgba(0,0,0,0.08) !important;
}

.card img{
    width:100% !important;
    height:300px !important;
    object-fit:cover !important;
    display:block !important;
}

.card h3{
    font-size:32px;
    margin-top:40px;
    margin-bottom:20px;
}

.card p{
    font-size:22px;
    line-height:1.5;
    color:#444;
}
/* ABOUT HERO SECTION */

.about-page .about-hero{

    position:relative;

    min-height:500px;

    background:#f5f7fa;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;
}



/* LOGO */
.logo img{

    width:170px;

    height:auto;
}

/* MENU */
nav a{

    color:white;

    text-decoration:none;

    margin-left:40px;

    font-size:20px;

    font-weight:600;
}

/* HERO TEXT */
.about-hero-text{

    position:absolute;

    left:70px;

    bottom:120px;

    color:white;
}

.about-hero-text h1{

    font-size:clamp(45px,8vw,90px);

    margin-bottom:20px;

    text-shadow:
    0 5px 20px rgba(0,0,0,0.5);
}



/* FEATURED SECTION */
.featured{

    padding:100px 70px;

    background:#f5f5f5;
}

.featured h2{

    font-size:50px;

    margin-bottom:30px;

    color:#1565c0;
}

.featured p{

    font-size:22px;

    line-height:1.8;

    max-width:1000px;
}


.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.slide.active{
    opacity:1;
}

.slide-text{
    position:absolute;
    z-index:2;
    left:70px;
	top: 45%;
	bottom: auto;
	transform: translateY(-50%);
   padding-top:120px;
    color:white;
    max-width:850px;
}

.slide-text h1{
    font-size:clamp(35px,6vw,70px);
    line-height:1.1;
    margin-bottom:20px;
}

.slide-text p{
    font-size:clamp(18px,2.5vw,28px);
    line-height:1.5;
}
/* HERO CENTER TEXT */
.hero-center{

    position:absolute;

    top:60%;

    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    z-index:2;

    color:white;

    animation:fadeUp 2s ease;
}

/* BIG TITLE */
.hero-center h1{

    font-size:clamp(45px,8vw,120px);

    font-weight:800;

    letter-spacing:6px;

    margin-bottom:20px;

    text-transform:uppercase;

    text-shadow:
    0 5px 20px rgba(0,0,0,0.5);
}

/* SUBTITLE */
.hero-center p{

    font-size:clamp(24px,4vw,48px);

    letter-spacing:4px;

    color:wheat;

    text-shadow:
    0 4px 15px rgba(0,0,0,0.4);
}

/* ANIMATION */
@keyframes fadeUp{

    from{

        opacity:0;

        transform:
        translate(-50%,-30%);
    }

    to{

        opacity:1;

        transform:
        translate(-50%,-50%);
    }
}
/*video-banner*/
.video-banner{
    position:relative;
	width: 100%;
    height:100vh;
	margin: 0;
	padding: 0;
    overflow:hidden;
}

.background-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
	z-index: -1;
}

.video-overlay{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    background:rgba(0,0,0,0.15);
}

.video-overlay h1{
    font-size:70px;
    margin-bottom:20px;
}

.video-overlay p{
    font-size:24px;
}
/* PRODUCT PAGE ONLY */

.product-page header{
    background:rgba(15,23,42,0.88) !important;
}


.product-page .featured{

    padding-top:180px !important;

    padding-left:70px;

    padding-right:70px;
}

/* TITLE */

.product-page .featured h2{

    font-size:clamp(32px,5vw,55px);

    margin-bottom:50px;

    color:#1565c0;
}

/* GRID */

.product-page .grid{

    display:grid !important;

    grid-template-columns:
    repeat(3,1fr)!important;

    gap:60px;
} 

/* CARD */

.product-page .card{

    width:100% !important;
	background: transparent !important;
	
	object-fit: cover !important;
		
    overflow:hidden!important;

   
}

/* IMAGE */

.product-page .card img{
	
	width: 100% !important;
	
	height: 220px !important;

	
	display: block;
	
	
}

/* CARD TITLE */

.product-page .card h3{

    font-size:clamp(20px,2vw,28px)!important;

    line-height:1.3!important;

	
	overflow-wrap:break-word!important;
}

/* CARD TEXT */

.product-page .card p{

    font-size:clamp(16px,2vw,22px);

    line-height:1.6;

    padding-left:25px;

    padding-right:25px;
}

/* LINK */

.product-page .card a{

    padding:25px;

    display:block;

    font-size:clamp(14px,2vw,18px);
}

/* TABLET */

@media(max-width:1100px){

    .product-page .grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:768px){

    .product-page .featured{

        padding-top:220px !important;

        padding-left:25px;

        padding-right:25px;
    }

    .product-page .grid{

        grid-template-columns:1fr;
    }

    .product-page .card img{

        height:220px;
    }

    .product-page nav a{

        font-size:14px;
    }
}

.product-page .dropdown-content{
    background:rgba(15,23,42,0.92) !important;
    backdrop-filter:blur(12px);
}

.product-page .dropdown-content a{
    color:white !important;
}

.product-page .dropdown-content a:hover{
    background:rgba(99,230,255,0.25) !important;
    color:#63e6ff !important;
} 
.white-logo img{
	border:none;
	filter:grayscale(1)invert(1)!important}

.dropdown-sub{
    position:relative;
}

.dropdown-sub-content{
    display:none;
    position:absolute;
    left:100%;
    top:0;

    min-width:280px;

    background:rgba(255,255,255,0.18);

    border-radius:18px;

    z-index:9999;
	
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	
	border:1px solid rgba(255,255,255,0.25);
}

.dropdown-sub:hover .dropdown-sub-content{
    display:block;
}

.dropdown-sub-content a{
    display:block;
    padding:14px 20px;
    color:white;
    text-decoration:none;
}

.dropdown-sub-content a:hover{
    background:rgba(99,230,255,0.25);
	
}
.dropdown-sub > a:hover{
	background: rgba(99,230,255,0.25);
	color: #63e6ff;
}

.dropdown-sub >a{
	display: block;
	width: auto;
	padding: 16px 24px;
	border-radius: 12px;
}
/* SERVICES DROPDOWN ITEMS*/
.dropdown-content a {
	display: block;
	padding: 16px 24px;
	border-radius: 12px;
	transition: 0.3s;
}

/*HOVER EFFECT*/
.dropdown-content a:hover{
	background: rgba(99,230,255,0.25);
	color:#63e6ff;
}
/*ABOUT-INFO*/
.about-info{
    display:block;
   width: 100%;
	background:linear-gradient(
        to right,
        #0f172a,
        #0b4f8a
    );
	
}

.about-info-text{

    background:linear-gradient(
        to right,
        #0f172a,
        #0b4f8a
    );

    color:white;

    padding:80px;

    max-width:100%;

    margin:0 auto;
}

.about-info-text h2{

    font-size:clamp(36px,5vw,60px);

    margin-bottom:40px;

    color:white;
}

.about-info-text p{

    font-size:20px;

    line-height:1.9;

    margin-bottom:25px;

    color:rgba(255,255,255,0.9);
}
/* PRODUCT PAGE ONLY */

.product-page .dropdown-sub-content{

   

    background:rgba(15,23,42,0.90);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.25);

    border-radius:18px;

    box-shadow:0 8px 30px rgba(0,0,0,0.12);

    padding:0;

    overflow:hidden;
}

.product-page .dropdown-sub-content a{

    display:block;

    padding:16px 24px;

    color:white;

    font-size:17px;

    font-weight:500;

    text-decoration:none;
}

.product-page .dropdown-sub-content a:hover{

    background:rgba(99,230,255,0.25);

    color:#63e6ff;
}
/* ================= MOBILE FIX ================= */

@media (max-width:768px){

    html,body{
        overflow-x:hidden;
    }

    header{
        padding:15px;
        flex-direction:column;
    }

 

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    nav a{
        font-size:14px !important;
        margin:0 !important;
        padding:8px 10px;
    }

    .slide-text,
    .hero-center,
    .about-hero-text{
        left:50% !important;
        top:55% !important;
        width:90% !important;
        transform:translate(-50%,-50%) !important;
        text-align:center;
    }

    .slide-text h1,
    .hero-center h1{
        font-size:32px !important;
    }

    .slide-text p,
    .hero-center p{
        font-size:16px !important;
    }

    .grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:25px !important;
    }

    .card{
        width:100% !important;
    }

    .card img{
        height:220px !important;
    }

    .featured,
    .split,
    .about-info-text{
        padding:30px 20px !important;
    }

    .contact-modern{
        grid-template-columns:1fr !important;
        padding:100px 20px 50px !important;
    }

    .contact-left h1{
        font-size:42px !important;
    }
}
/* Second dropdown mobile fix */
@media screen and (max-width:768px){

  .dropdown-content{
    position:static !important;
    width:100% !important;
  }

  .dropdown-sub{
    position:relative !important;
    width:100% !important;
  }

  .dropdown-sub-content{
    position:static !important;
    left:auto !important;
    top:auto !important;
    width:100% !important;
    min-width:100% !important;
    margin-left:0 !important;
    padding-left:15px !important;
    display:none !important;
  }

  .dropdown-sub.open .dropdown-sub-content{
    display:block !important;
  }

  .dropdown-sub-content a{
    font-size:13px !important;
    white-space:normal !important;
    line-height:1.4 !important;
  }
}

/* ===== ABOUT PAGE FINAL DESIGN ===== */

.about-page header{
    background:rgba(15,23,42,0.88) !important;
}

.about-page .about-hero{
    position:relative !important;
    min-height:500px !important;
    background:#f5f7fa !important;
    background-image:none !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    text-align:center !important;
    padding:160px 20px 80px !important;
}

.about-page .about-hero-text{
    position:static !important;
    color:#0f172a !important;
}



.about-page .about-hero-text h1{
    font-size:clamp(45px,8vw,85px) !important;
    color:#1565c0 !important;
    margin:20px 0 15px !important;
    opacity:0;
    animation:titleEntrance 1s ease forwards;
    animation-delay:1.1s;
}

.about-page .about-hero-text p{
    font-size:clamp(18px,3vw,28px) !important;
    color:#0f172a !important;
    line-height:1.4 !important;
    opacity:0;
    animation:subtitleEntrance 1s ease forwards;
    animation-delay:2s;
}


@keyframes titleEntrance{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes subtitleEntrance{
    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* ===== Logo animation for all pages ===== */

header img{
    animation:logoIntro 1.2s ease-out;
}

@keyframes logoIntro{

    0%{
        opacity:0;
        transform:translateY(-50px) scale(.75);
    }

    60%{
        opacity:1;
        transform:translateY(8px) scale(1.05);
    }

    100%{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
/* Bigger and more attractive About paragraph */

.about-page .about-hero-text p{
    font-size:clamp(24px,4vw,42px) !important;
    line-height:1.35 !important;
    font-weight:500 !important;
    letter-spacing:1px !important;
    color:#0f172a !important;
    max-width:900px !important;
    margin:0 auto !important;
}
/* ===== About page dropdown same as Product page ===== */

.about-page .dropdown-content,
.about-page .dropdown-sub-content{
    background:rgba(15,23,42,0.92) !important;
    backdrop-filter:blur(12px) !important;
    border:1px solid rgba(255,255,255,0.25) !important;
    border-radius:18px !important;
    box-shadow:0 8px 30px rgba(0,0,0,0.12) !important;
    overflow:hidden !important;
}

.about-page .dropdown-content a,
.about-page .dropdown-sub-content a{
    color:white !important;
    font-size:17px !important;
    font-weight:500 !important;
    text-decoration:none !important;
}

.about-page .dropdown-content a:hover,
.about-page .dropdown-sub-content a:hover{
    background:rgba(99,230,255,0.25) !important;
    color:#63e6ff !important;
}
/* FIX ABOUT SECOND DROPDOWN */
.about-page .dropdown-content{
    overflow:visible !important;
}

.about-page .dropdown-sub{
    position:relative !important;
}

.about-page .dropdown-sub-content{
    display:none !important;
    position:absolute !important;
    left:100% !important;
    top:0 !important;
    min-width:280px !important;
    background:rgba(15,23,42,0.92) !important;
    z-index:99999 !important;
    overflow:hidden !important;
}

.about-page .dropdown-sub:hover .dropdown-sub-content{
    display:block !important;
}






