//* ============================= */
/* 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);
}

/* ============================= */
/* HERO SECTION */
/* ============================= */

.image-content{
width:100%;
height:100vh;
background:url("../images/Home/home.png");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.text-box{
margin-top:200px;
}

.btn{
display:inline-block;
background:#00bfff;
color:white;
padding:12px 35px;
border-radius:30px;
text-decoration:none;
transition:0.3s;
}

.btn:hover{
background:transparent;
border:2px solid #00bfff;
color:#00bfff;
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.container{
display:flex;
align-items:center;
justify-content:space-between;
padding:40px;
background:white;
}

.container img{
width:35%;
border-radius:10px;
}

.text{
width:50%;
padding:20px;
text-align:justify;
}

/* ============================= */
/* GALLERY */
/* ============================= */

.gallery-section{
padding:60px 5%;
background:#f4f4f4;
}

.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;
}

/* ============================= */
/* SERVICES */
/* ============================= */

.services{
background:#c0c0c0;
text-align:center;
padding:50px 10%;
}

.services h2{
margin-bottom:40px;
border-bottom:3px solid #0078d7;
display:inline-block;
padding-bottom:10px;
}

.service-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.service-box{
background:#E8E8E8;
border-radius:10px;
padding:25px;
transition:0.3s;
}

.service-box:hover{
transform:translateY(-5px);
}

/* ============================= */
/* PARTNERS */
/* ============================= */

.partner-section{
text-align:center;
padding:50px 10%;
background:white;
}

.partner-section h2{
margin-bottom:40px;
border-bottom:3px solid #0078d7;
display:inline-block;
padding-bottom:10px;
}

.partner-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:40px;
}

.partner-card{
background:white;
border:1px solid #cfd8dc;
border-radius:10px;
width:100%;
max-width:350px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.partner-card img{
width:100%;
height:200px;
object-fit:cover;
}

.partner-card p{
padding:15px;
text-align:justify;
}

/* ============================= */
/* COLLABORATION */
/* ============================= */

.collab-section{
background:#c0c0c0;
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;
}

.arrow{
background:#333;
color:white;
border:none;
padding:10px 15px;
cursor:pointer;
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer{
background:#111;
color:#ccc;
padding:40px 20px;
}

.footer-content{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
max-width:1200px;
margin:auto;
}

.footer-about,
.footer-contact,
.footer-social{
flex:1;
min-width:250px;
}

.footer h3,
.footer h4{
color:#00bfff;
}

.footer a{
color:#ccc;
text-decoration:none;
}

.footer a:hover{
color:#00bfff;
}

.footer-bottom{
text-align:center;
border-top:1px solid #333;
margin-top:20px;
padding-top:10px;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media(max-width:768px){
.menu-toggle{
display:block;
}
nav {
  width: 100%;
}
  nav ul{
  flex-direction: column;
  position: absolute;
  top:70px;
  left:0;
  background:white;
  width:100%;
  display: none;
  gap: 0;
}

nav ul.active{
 display: flex;
}

  nav ul li {
    padding: 15px;
    text-align: center;
    border-top:1px solid #eee;
  }


.container{
flex-direction:column;
text-align:center;
}

.container img{
width:90%;
margin-bottom:20px;
}

.text{
width:100%;
}

.service-container{
grid-template-columns:1fr;
}

.sliders-container{
flex-direction:column;
}

.partner-card{
margin:auto;
}

.collab-logos{
width:100%;
overflow-x:auto;
}

.footer-content{
flex-direction:column;
text-align:center;
}

.text-box{
margin-top:120px;
}

}
.image-content{
margin-top:80px;
}
/* Desktop / Laptop */
@media (min-width:769px){
  .image-content{
    margin-top:80px;
  }
}
 
/* Mobile */
@media (max-width:768px){
  .image-content{
    margin-top:0;
  }
}