//* ============================= */
/* GLOBAL */
/* ============================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
background:#f7f9fb;
color:#333;
line-height:1.4;
}

img{
max-width:100%;
height:auto;
}
/* ============================= */
/* HEADER / NAVBAR */
/* ============================= */

header {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Navbar container */
.navbar-container {
  width: 100%;
  max-width: 90%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0px;
  box-sizing: border-box;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 55px;
  margin-left: 0;
  margin-bottom: 5px;
}

.logo h1 {
  font-size: 26px;
  margin: 0;
  color: #075480;
  font-weight: 700;
  white-space: nowrap;
}


/* NAV LINKS */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #075480;
  font-weight: 500;
  display: block;
  padding: 6px 8px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

nav ul li a:hover {
  background: #f5f5f5;
  color: #4b0082;
  transform: translateX(2px);
}

nav ul li a.active {
  color: #0056b3;
  font-weight: 700;
  border-bottom: 2px solid #0056b3;
}

/* DROPDOWN */
.nav-item {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: grey;
  min-width: 180px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1000;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  color: white;
  padding: 8px;
}

.dropdown-menu a:hover {
  background: #00bfff;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px auto;
  background: #075480;
  transition: all 0.4s ease;
  border-radius: 5px;
}

.menu-toggle:hover .bar {
  background: #00bfff;
}

.menu-toggle.active .bar:nth-child(1){
  transform: rotate(45deg) translate(5px,5px);
}

.menu-toggle.active .bar:nth-child(2){
  opacity:0;
}

.menu-toggle.active .bar:nth-child(3){
  transform: rotate(-45deg) translate(6px,-6px);
}

/* ========================= */
/* MODERN HERO SECTION */
/* ========================= */

.hero-section{
    width:85%;
    min-height:350px;
    padding:90px 8% 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    position:relative;
    overflow:hidden;

    background:#DCDCDC ;

    perspective:1400px;

    color:white;
}
.hero-video-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-video-bg video{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/*

.hero-video-bg video{
filter:
brightness(0.5)
contrast(1.02)
blur(1px);
}*/.hero-section::before{
content:"";
position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(15,23,42,0.55),
rgba(15,23,42,0.20),
rgba(255,255,255,0.02)
);

z-index:1;
}
.hero-video-bg video{
animation:heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom{

from{
transform:scale(1);
}

to{
transform:scale(1.08);
}

}

.hero-left::after{

content:"";

position:absolute;

width:500px;
height:500px;

background:
radial-gradient(
circle,
rgba(56,189,248,0.12),
transparent 70%
);

bottom:-250px;
left:-180px;

border-radius:50%;

z-index:0;
}

/* ========================= */
/* STEP 3 — Content Above BG */
/* ========================= */






.hero-content h1,
.hero-content p{
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-content p{
    max-width: 580px;
}
/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 24px;
    border-radius:50px;
    font-size:14px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.primary-btn{
    background:#0ea5e9;
    color:white;
}

.primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(14,165,233,0.3);
}

.secondary-btn{
    border:1px solid rgba(0,0,0,0.1);
    color:#111827;
    backdrop-filter:blur(10px);
}

.secondary-btn:hover{
    background:white;
    color:#111827;
}






/* ===================================== */
/* HERO CONTENT SECTION */
/* ===================================== */

.hero-content-section{

position:relative;

margin-top:-90px;
z-index:20;

padding:0 8% 120px;

display:flex;
justify-content:center;
}

/* MAIN CARD */

.hero-left{

width:100%;
max-width:1100px;

background:
rgba(255,255,255,0.78);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,0.35);
border-top:1px solid rgba(255,255,255,0.6);

border-left:1px solid rgba(255,255,255,0.4);
border-radius:36px;

padding:50px 60px;

box-shadow:
0 25px 80px rgba(0,0,0,0.08);

overflow:hidden;

position:relative;
}

.hero-left{
animation:floatCard 5s ease-in-out infinite;
}

@keyframes floatCard{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-5px);
}

}
.hero-left{
transition:
transform 0.4s ease,
box-shadow 0.4s ease;
}

.hero-left:hover{

transform:
translateY(-6px);

box-shadow:
0 35px 100px rgba(0,0,0,0.12);
}
/* BACKGROUND GLOW */

.hero-left::before{

content:"";

position:absolute;

width:450px;
height:450px;

background:
radial-gradient(
circle,
rgba(14,165,233,0.10),
transparent 70%
);

top:-180px;
right:-120px;

border-radius:50%;
}

/* CONTENT */

.text-box{

position:relative;
z-index:2;

max-width:1000px;

margin:auto;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

text-align:center;
}
.hero-left{

display:flex;
align-items:center;
justify-content:center;
}

/* TAG */

.hero-tag{

display:inline-flex;
align-items:center;
gap:10px;

padding:12px 22px;

background:
rgba(14,165,233,0.08);

border:1px solid rgba(14,165,233,0.12);

border-radius:50px;

font-size:14px;
font-weight:600;

letter-spacing:0.5px;

color:#0284c7;

margin-bottom:30px;
}

/* HEADING */

.text-box h1{

font-size:72px;
line-height:1.02;
font-weight:800;

letter-spacing:-2px;

color:#0f172a;

margin-bottom:32px;
max-width:900px;
}

.text-box h1 span{

color:#38bdf8;
}

/* PARAGRAPH */

.text-box p{

font-size:20px;
line-height:1.9;

color:#475569;

max-width:640px;

margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{

display:flex;
align-items:center;
gap:20px;
}

/* PRIMARY BUTTON */

.primary-btn{

display:inline-flex;
align-items:center;
justify-content:center;

padding:16px 34px;

background:
linear-gradient(
135deg,
#0284c7,
#0ea5e9
);

color:white;

font-size:16px;
font-weight:600;

border-radius:14px;

text-decoration:none;

transition:0.35s ease;

box-shadow:
0 12px 30px rgba(14,165,233,0.25);
}

.primary-btn:hover{

transform:
translateY(-4px);

box-shadow:
0 20px 40px rgba(14,165,233,0.30);
}
.text-box{
animation:fadeUp 1s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(30px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */
.container{

display:flex;
align-items:center;
justify-content:space-between;
gap:60px;

padding:10px 5%;


}

.container img{

width:35%;

border-radius:28px;

box-shadow:
0 20px 50px rgba(0,0,0,0.10);

transition:0.4s ease;
}

.container img:hover{

transform:scale(1.02);
}

.text h2{

font-size:40px;

font-weight:800;

color:#0f172a;

margin-bottom:28px;

line-height:1.1;
}

.text p{

font-size:18px;

line-height:2;

color:#475569;

text-align:left;
}
.text h2::after{

content:"";

display:block;

width:90px;
height:4px;

background:#38bdf8;

border-radius:20px;

margin-top:16px;
}
.container{

background:
linear-gradient(
135deg,
rgba(255,255,255,0.95),
rgba(248,250,252,0.92)
);

backdrop-filter:blur(10px);

border-radius:32px;

box-shadow:
0 20px 60px rgba(0,0,0,0.06);
}
/* ============================= */
/* GALLERY */
/* ============================= */

.gallery-section{
padding:60px 5%;
background:
linear-gradient(
180deg,
#f8fafc,
#eef4f9
);
}

.sliders-container{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.gallery-container{
flex:1;
min-width:300px;
background:white;
border-radius:10px;
overflow:hidden;
}

.gallery-container h2{
text-align:center;
margin-bottom:20px;
}

.gallery-slider{
position:relative;
overflow:hidden;
}

.gallery-slider input{
display:none;
}

.gallery-slides{
display:flex;
width:600%;
transition:0.6s;
}

.gallery-slide{
width:calc(100%/6);
}

.gallery-slides img{
width:100%;
max-height:350px;
object-fit:cover;
}

/* Slider Logic */
#g1:checked ~ .gallery-slides{transform:translateX(0);}
#g2:checked ~ .gallery-slides{transform:translateX(-16.66%);}
#g3:checked ~ .gallery-slides{transform:translateX(-33.33%);}
#g4:checked ~ .gallery-slides{transform:translateX(-50%);}
#g5:checked ~ .gallery-slides{transform:translateX(-66.66%);}
#g6:checked ~ .gallery-slides{transform:translateX(-83.33%);}

#c1:checked ~ .gallery-slides{transform:translateX(0);}
#c2:checked ~ .gallery-slides{transform:translateX(-16.66%);}
#c3:checked ~ .gallery-slides{transform:translateX(-33.33%);}
#c4:checked ~ .gallery-slides{transform:translateX(-50%);}
#c5:checked ~ .gallery-slides{transform:translateX(-66.66%);}
#c6:checked ~ .gallery-slides{transform:translateX(-83.33%);}

/* Arrows */
.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.6);
color:white;
padding:10px 15px;
font-size:24px;
cursor:pointer;
border-radius:5px;
display:none;
}

.left{left:10px;}
.right{right:10px;}

#g1:checked ~ .arrow.a1,
#g2:checked ~ .arrow.a2,
#g3:checked ~ .arrow.a3,
#g4:checked ~ .arrow.a4,
#g5:checked ~ .arrow.a5,
#g6:checked ~ .arrow.a6,
#c1:checked ~ .arrow.b1,
#c2:checked ~ .arrow.b2,
#c3:checked ~ .arrow.b3,
#c4:checked ~ .arrow.b4,
#c5:checked ~ .arrow.b5,
#c6:checked ~ .arrow.b6{
display:block;
}
/* ============================= */
/* MODERN SERVICES SECTION */
/* ============================= */

.services{

padding:50px 6%;

background:
linear-gradient(
180deg,
#f8fafc 0%,
#eef4f9 100%
);

text-align:center;
}

/* HEADING */

.services-heading span{

display:inline-block;

padding:10px 20px;

background:
rgba(14,165,233,0.08);

border:1px solid rgba(14,165,233,0.15);

border-radius:50px;

color:#0284c7;

font-size:14px;
font-weight:600;

margin-bottom:20px;
}

.services-heading h2{

font-size:52px;

font-weight:800;

color:#0f172a;

margin-bottom:20px;
}

.services-heading p{

max-width:700px;

margin:auto;

font-size:18px;

line-height:1.8;

color:#64748b;
}

/* GRID */

.service-container{

margin-top:40px;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(260px,1fr));

gap:22px;
}

/* CARD */

.service-card{

background:
rgba(255,255,255,0.75);

backdrop-filter:blur(14px);

border:1px solid rgba(255,255,255,0.7);

border-radius:22px;

padding:30px 24px;

position:relative;

overflow:hidden;

transition:0.4s ease;

box-shadow:
0 15px 40px rgba(0,0,0,0.06);
}

/* TOP GLOW */

.service-card::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:5px;

background:
linear-gradient(
90deg,
#38bdf8,
#0ea5e9
);
}

/* HOVER */

.service-card:hover{

transform:
translateY(-12px);

box-shadow:
0 30px 60px rgba(0,0,0,0.12);
}

/* ICON */

.service-card i{

font-size:42px;

color:#0ea5e9;

margin-bottom:25px;
}

/* TITLE */

.service-card h3{

font-size:22px;

font-weight:700;

color:#0f172a;

margin-bottom:14px;
}

/* TEXT */

.service-card p{

font-size:15px;

line-height:1.7;

color:#64748b;
}


/* ============================= */
/* PARTNER SECTION */
/* ============================= */

.partner-section{

padding:30px 6%;

background:
linear-gradient(
180deg,
#f8fafc 0%,
#eef4f9 100%
);

text-align:center;
}

/* HEADING */

.partner-section h2{

font-size:52px;

font-weight:800;

color:#0f172a;

margin-bottom:18px;
}

.partner-section h2::after{

content:"";

display:block;

width:120px;
height:4px;

background:#38bdf8;

margin:20px auto 0;

border-radius:20px;
}

/* CONTAINER */

.partner-container{

margin-top:45px;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:24px;
}

/* CARD */

.partner-card{

background:
rgba(255,255,255,0.78);

backdrop-filter:blur(14px);

border-radius:28px;

overflow:hidden;

box-shadow:
0 15px 50px rgba(0,0,0,0.06);

transition:0.4s ease;

border:1px solid rgba(255,255,255,0.7);
}

/* HOVER */

.partner-card:hover{

transform:
translateY(-10px);

box-shadow:
0 30px 60px rgba(0,0,0,0.12);
}

/* IMAGE */

.partner-card img{

width:100%;
height:190px;

object-fit:cover;

transition:0.5s ease;
}

.partner-card:hover img{

transform:scale(1.05);
}

/* CONTENT */

.partner-card h3{

font-size:22px;

font-weight:700;

color:#0f172a;

margin:20px 20px 12px;
}

.partner-card p{

font-size:15px;

line-height:1.7;

color:#64748b;

padding:0 20px 24px;

text-align:left;
}

/* ============================= */
/* COLLABORATION */
/* ============================= */

.collab-section{
background:
linear-gradient(
180deg,
#f8fafc,
#eef4f9
);
padding:40px 0;
text-align:center;
}

.collab-wrapper{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}

.collab-logos{
display:flex;
overflow:hidden;
gap:20px;
width:70%;
}

.logo-card{
min-width:200px;
background:white;
padding:20px;
border-radius:10px;
}

.logo-card img{
height:120px;
object-fit:contain;
}
/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

background:
linear-gradient(
135deg,
#0f172a,
#111827,
#020617
);

padding:10px 24px 4px;

color:#cbd5e1;
}

/* MAIN CONTENT */

.footer-content{

display:flex;

justify-content:space-between;

align-items:flex-start;

gap:12px;

max-width:1400px;

margin:auto;
}

/* BOX */

.footer-box{

flex:1;
}

/* TITLES */

.footer-box h3{


font-size:14px;

font-weight:700;

margin-bottom:2px;
}
.footer h3,
.footer h4{

color:#38bdf8;}
/* TEXT */

.footer-box p{

font-size:12px;

line-height:1.3;

color:#cbd5e1;
}
/* LINKS */

.footer a{

color:#e2e8f0;

text-decoration:none;

transition:0.3s;
}

.footer a:hover{

color:#38bdf8;
}

/* ICONS */

.footer i{

color:#38bdf8;

margin-right:8px;
}
/* SOCIAL 

.social-icons{

display:flex;

gap:8px;

margin-top:2px;
}

.social-icons a{

color:#d1d5db;
gap:12px;
margin-top:4px;
font-size:16px;

transition:0.3s ease;
}

.social-icons a:hover{

color:#00ff84;*/
}
/* SOCIAL */
.footer-social a{

font-size:20px;
color:#38bdf8;

margin-right:12px;

transition:0.3s ease;

display:inline-block;
}

/* HOVER EFFECT */

.footer-social a:hover{

color:#0ea5e9;

transform:
translateY(-4px)
scale(1.12);

text-shadow:
0 0 12px rgba(56,189,248,0.8);
}
.footer-social a:nth-child(1):hover{
color:#E1306C;   /* Instagram */
}

.footer-social a:nth-child(2):hover{
color:#0A66C2;   /* LinkedIn */
}

.footer-social a:nth-child(3):hover{
color:#38bdf8;   /* Location */
}
/* BOTTOM */

.footer-bottom{

border-top:1px solid rgba(255,255,255,0.08);

margin-top:6px;

padding-top:4px;

text-align:center;
}

.footer-bottom p{

font-size:13px;

color:#94a3b8;
}
/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width:768px){

    html,
    body{
        overflow-x:hidden;
    }

    .menu-toggle{
        display:block;
    }

    nav ul.navbar{
        position:absolute;
        top:70px;
        left:-100%;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        transition:.3s;
        box-shadow:0 5px 15px rgba(0,0,0,.1);
    }

    nav ul.navbar.active{
        left:0;
    }

    nav ul li{
        width:100%;
        text-align:center;
    }

    .dropdown-menu{
        position:static;
        width:100%;
    }

    .hero-section{
        width:100%;
        padding:80px 15px 40px;
    }

    .hero-content-section{
        padding:0 15px 60px;
    }

    .hero-left{
        padding:25px 20px;
        width:100%;
    }

    .text-box h1{
        font-size:38px;
        line-height:1.2;
    }

    .text-box p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .container{
        flex-direction:column;
        gap:25px;
        text-align:center;
    }

    .container img{
        width:100%;
    }

    .text h2{
        font-size:30px;
    }

    .text p{
        font-size:16px;
        text-align:center;
    }

    .services-heading h2,
    .partner-section h2{
        font-size:32px;
    }

    .service-container,
    .partner-container{
        grid-template-columns:1fr;
    }

    .gallery-container{
        min-width:100%;
    }

    .collab-logos{
        width:100%;
    }

    .logo-card{
        min-width:150px;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
		
    }

    .logo h1{
        font-size:16px;
    }

    .logo img{
        height:40px;
    }
}

/* 320px */
@media (max-width:320px){

    .text-box h1{
        font-size:26px;
    }

    .text-box p{
        font-size:14px;
    }

    .hero-left{
        padding:20px 15px;
    }

    .logo h1{
        font-size:12px;
    }

    .logo img{
        height:32px;
    }
}

/* 321px - 375px */
@media (min-width:321px) and (max-width:375px){

    .text-box h1{
        font-size:30px;
    }

    .logo h1{
        font-size:14px;
    }
}

/* 376px - 425px */
@media (min-width:376px) and (max-width:425px){

    .text-box h1{
        font-size:34px;
    }

    .logo h1{
        font-size:15px;
    }
}

/* 769px - 1024px */
@media (min-width:769px) and (max-width:1024px){

    .text-box h1{
        font-size:55px;
    }

    .container{
        gap:30px;
    }

    .container img{
        width:45%;
    }

    .footer-content{
        gap:20px;
    }
}

/* 1025px - 1440px */
@media (min-width:1025px) and (max-width:1440px){

    .text-box h1{
        font-size:64px;
    }
}

/* 1441px - 2560px */
@media (min-width:1441px){

    .text-box h1{
        font-size:80px;
    }

    .hero-left{
        max-width:1400px;
        margin:auto;
    }
}
/* Mobile Responsive Hero */
@media screen and (max-width:320px){

   

    .hero-video-bg,
    .hero-video-bg video{
        width:100%;
        height:200px;
        object-fit:fill;
    }

  
}
@media (max-width:320px){

    .hero-section{
        padding-top:70px !important;
        padding-bottom:0 !important;
    }

    .hero-content-section{
        margin-top:-250px !important;
    }

}
@media (max-width:320px){

    .hero-content-section{
        background:linear-gradient(
            135deg,
            rgba(255,255,255,0.95),
            rgba(248,250,252,0.92)
        );
    }

}
@media (max-width:768px){

    .footer-content{
        display:flex;
        flex-direction:column;
        align-items:center !important;
        justify-content:center !important;
        text-align:center;
        gap:25px;
    }

    .footer-about,
    .footer-contact,
    .footer-social{
        width:100%;
        text-align:center;
    }

    .footer-contact p{
        text-align:center;
    }

    .footer-social{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .footer-social div,
    .footer-social a{
        justify-content:center;
		flex-direction:row;
		
    }

    .footer-bottom{
        text-align:center;
    }
}
@media (max-width:768px){

    .footer-social{
        display:block !important;
        text-align:center;
    }

    .footer-social a{
        display:inline-block !important;
        margin:0 10px !important;
    }

}



@media only screen and (max-width:768px){

  .navbar-container{
    flex-wrap:wrap;
  }

  .container{
    flex-direction:column !important;
  }

  .text{
    width:100% !important;
  }

  .container img{
    width:100% !important;
    max-width:350px;
  }

  .sliders-container{
    flex-direction:column !important;
  }

  .gallery-container{
    width:100% !important;
  }
}