*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f4f6f9;
    color:#222;
}

/* ===== HEADER ===== */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:01px 40px;
    background:#0a1f44;
    color:white;
}

nav a:hover,
nav a.active{
  color:#00bcd4;
  border-bottom:2px solid #00bcd4;
}


/* ✅ LOGO FIXED HERE */
header img{
    width:140px;
    height:auto;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    font-size:15px;
}

nav a:hover{
    color:#00bcd4;
}

/* ===== HERO ===== */
.hero{
    height:90vh;
    background:linear-gradient(rgba(10,31,68,0.8), rgba(10,31,68,0.8)),
    url("images/header/home.jpg");
    background-size:cover;
    background-position:center;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
}

.btn{
  background:#00bcd4;
  color:#fff;
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  display:inline-block;
}

.btn:hover{
  background:#0097a7;
}


/* ===== SECTIONS ===== */
section{
    padding:80px 60px;
    text-align:center;
}

.about p{
    max-width:700px;
    margin:20px auto;
}
.partners-section {
    background: #ffffff; /* This forces the background to turn white again */
    padding: 60px 0;
    position: relative;
    width: 100%;
}

.cen {
    text-align: center;
    margin-bottom: 30px;
}
/* ===== SOLUTIONS ===== */
.logo-section {
  padding: 30px 0;
  background: #fff;
  overflow: hidden; 
}

.cen {
  text-align: center;
  margin-bottom: 30px;
}

.slider {
  display: flex;
  flex-direction: column;
  gap: 20px; 
}

.slide-track {
  display: flex;
  /* Width = 260px * 28 logos total */
  width: calc(260px * 28); 
}

.logo {
  width: 180px; 
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-shrink: 0; 
}

.logo img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

/* Row 1: Moves Left */
.track-left {
  animation: scrollLeft 40s linear infinite;
}

/* Row 2: Moves Right */
.track-right {
  animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  /* Resets after 14 logos have passed */
  100% { transform: translateX(calc(-260px * 14)); } 
}

@keyframes scrollRight {
  /* Starts shifted so the left side is full of logos immediately */
  0% { transform: translateX(calc(-260px * 14)); }
  100% { transform: translateX(0); }
}

/* Optional: Pause animation on hover */
.slide-track:hover {
  animation-play-state: paused;
}

/* ===== WHY ===== */
.why {
    background: #e9edf3;
    padding: 60px 20px; /* Adds space so the background looks intentional */
    display: flow-root; /* Ensures all list items stay inside this background */
}

.why ul{
    list-style:none;
    margin-top:30px;
}

.why li{
    margin:10px 0;
}

/* ===== CONTACT ===== */
.contact{
    background:#0a1f44;
    color:white;
}


/* ===== FOOTER ===== */
.footer{
    background:#0B1C2D;
    color:#ffffff;
    font-family: Arial, sans-serif;
    padding: 30px 0 12px;   /* ✅ smaller height */
}

/* ✅ Make content smaller (not full wide) */
.footer-top{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;

    /* ✅ CHANGED: 4 columns -> 3 columns (logo + empty space + company in middle) */
    grid-template-columns: 1.4fr 1fr 1fr;

    gap: 40px;
    padding: 0;            /* ✅ remove extra padding */
}

/* ✅ Move COMPANY to Resource place (middle column) */
.footer-top .footer-col:nth-child(2){
    grid-column: 2;
}

/* LOGO */
.footer-logo{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
}

.footer-logo img{
    width:150px;
    height:auto;
}

/* ADDRESS */
.address{
    font-size:14px;
    line-height:1.6;
    margin-bottom:16px;
    opacity:0.9;
}

/* SOCIAL ICONS */
.socials{
    margin-top: 10px;
    display:flex;
    gap:10px;
}

.socials img{
    width:25px;
    height:25px;
    filter: brightness(0) invert(1);
    cursor:pointer;
}

/* COLUMN TITLES */
.footer-col h4{
    font-size:20px;
    margin-bottom:15px;
}

/* LINKS */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    color:#ddd;
    text-decoration:none;
    font-size:15px;
}

.footer-col ul li a:hover{
    color:#fff;
}

/* ✅ FULL WIDTH LINE ABOVE COPYRIGHT (left to right) */
.footer-line{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 22px 0 12px;
}

/* ✅ COPYRIGHT CENTER */
.footer-bottom{
    width: 100%;
    text-align:center;
    padding: 10px 10px 0;
}

.footer-bottom p{
    margin:0;
    color: rgba(255, 255, 255, 0.65);
    font-size:14px;
}

/* ✅ Responsive */
@media(max-width: 900px){
    .footer-top{
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* ✅ keep company in normal flow on small screens */
    .footer-top .footer-col:nth-child(2){
        grid-column: auto;
    }
}

@media(max-width: 600px){
    .footer-top{
        grid-template-columns: 1fr;
        text-align:center;
    }

    .socials{
        justify-content:center;
    }
}

/* portfolio */


