
* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Segoe UI', sans-serif;
}

.top-bar {
  
    display: inline;
    padding: 8px 40px;
    font-size: 14px;
    color: #f4a100;
    justify-content: center;
    margin-top: 3px;
}
.top-bar a { color: #f4a100; text-decoration: none; }

.highlight {color: blue; font-weight: 600; text-decoration: underline;}
nav {
    position:fixed;
    width:100%;
    background:#0b3c49;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    z-index:1000;
}

nav img {
    height:40px;
}

nav a {
    color:white;
    margin:0 15px;
    text-decoration:none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 10px;
    border-radius: 20px;
    
}
nav a:hover{
    background-color: #f4a100;
    
}
nav a.active {
    background-color: #f4a100;
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}
.hero img.active { opacity: 1; }

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0; left: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero h1 { font-size: 48px; margin-bottom: 15px; }
.hero p { font-size: 20px; margin-bottom: 25px; }

.btn {
    padding:12px 25px;
    background:#f4a100;
    color:white;
    text-decoration:none;
    margin-top:15px;
    display:inline-block;
}

.stats {
    background: #f4a100;
    color: #0b3c49;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    padding: 40px 20px;
}
.stat h3 { font-size: 36px; margin-bottom: 5px; }
.stat p { font-weight: 600; }

.page-header {
    background: #f4a100;
    color: white;
    padding: 80px 40px 20px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 40px;
}
nav a.active {background-color: #f4a100;}
.solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.solution-card {
    padding: 10px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border-top: 4px solid #f4a100;
}
.solution-card:hover { transform: translateY(-10px); }
.solution-card i {
    font-size: 40px;
    color: #f4a100;
    margin-bottom: 15px;
}
.solution-card h3 { margin-bottom: 10px; color: #0b3c49; }

.cta-banner {
    background: linear-gradient(rgba(11,60,73,0.9), rgba(11,60,73,0.9)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=2560') center/cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin: 0;
    max-width: 100%;
}
.cta-banner h2 { color: white; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-content { padding: 20px; }
.news-content h4 {
    text-decoration: #25D366;
    color: #25D366;
    font-size: 20px;
}
h4 {
    color: #25D366;
    font-size: 30px;
}

section {
    padding:60px 40px;
    text-align:center;
    margin: 0;
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
}

.services {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card {
    padding:20px;
    background:white;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    border-radius:10px;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-10px);
}


.gallery {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery img {
    width:100%;
    border-radius:10px;
}



.contact a {
    display:inline-block;
    margin-top:10px;
}
/* Partners Marquee */
.partners {
    background: #f8f9fa;
    padding: 60px 0;
    overflow: hidden;
}
.partner-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: max-content;
}
.partner-track:hover { animation-play-state: paused; }
.partner-logo {
    height: 60px;
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}
.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Client Reviews */
.reviews {
    background: white;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.review-card {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    border-left: 4px solid #f4a100;
    position: relative;
}
.review-card i.fa-quote-left {
    font-size: 30px;
    color: #f4a100;
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 20px;
}
.review-text {
    margin: 20px 0;
    font-style: italic;
    color: #555;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.review-author h4 {
    margin: 0;
    color: #0b3c49;
}
.review-author span {
    font-size: 14px;
    color: #777;
}
.stars {
    color: #f4a100;
    margin-top: 5px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
}


footer {
    background:#0b3c49;
    color:white;
    padding: 20px 40px; 
    align-items: center;
    width: 100%;
    margin: 0px;
}
footer p{
    align-items: center;
    text-align: center;
    
}
