/* Nethawk Solutions Styles  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Urbanist';
}
:root {
    --primary-color: rgba(0, 0, 0, 0.8);
    --secondary-color: #003c78;
    --text-color: #333;
    --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.88);
}
@keyframes zoom-bg {
    0% {
        background-size: 110%;
        background-position: center;
    }
    100% {
        background-size: 120%;
        background-position: center 20px;
    }
}
a{
    text-decoration: none;
}

.btn-primary{
    border-color: #003c78 !important;
    background-color: #003c78 !important;
}
.btn-outline-primary{
    color: #003c78 !important;
    border-color: #003c78 !important;
}
.text-primary{
    color: #003c78 !important;
}
h2{
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: capitalize;
}
header {
    background-image: url('img/Convoy.png');
    animation: zoom-bg 18s ease-in-out infinite alternate;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
    background-blend-mode: multiply;
    padding: 2% 0;
    box-shadow: var(--header-shadow);
    height: 90vh;
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 0 auto;
    padding: 0 20px;
}
header nav .logo {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}
header nav .logo img{
    height: 30px;
    margin-right: 10px;
}
header nav .logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
header nav .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
header nav .menu-toggle .menu-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: relative;
}
header nav .menu-toggle .menu-icon::before,
header nav .menu-toggle .menu-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}
header nav .menu-toggle .menu-icon::before {
    top: -8px;
}
header nav .menu-toggle .menu-icon::after {
    bottom: -8px;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 0px !important;
}
header nav ul li {
    position: relative;
}
header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
header nav ul li a:hover {
    color: #f0f0f0;
}
header nav ul li a.active {
    color: #f0f0f0;
    color: var(--secondary-color) !important;
    font-weight: 600;
}
header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #f0f0f0;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}
header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: 100%;
}
header nav ul li a.active::after {
    width: 100%;
}
header nav ul li a.active {
    color: #f0f0f0;
    font-weight: 600;
}
header nav ul li a.active::after {
    width: 100%;
}
@media (max-width: 768px) {
    header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background-color: #999;
        padding: 20px;
        border-radius: 5px;
    }
    header nav ul.active {
        display: flex;
    }
    header nav .menu-toggle {
        display: block;
    }
}
header nav .menu-toggle.active .menu-icon {
    background-color: transparent;
}
header nav .menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}
header nav .menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

header nav .cta-btn {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
header nav .cta-btn:hover {
    background-color: #333;
    color: #f0f0f0;
}
/* Responsive styles */
@media (max-width: 768px) {
    header nav .cta-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    header nav .logo h1 {
        font-size: 20px;
    }
    header nav ul li a {
        font-size: 14px;
    }
    header nav .menu-toggle .menu-icon {
        width: 25px;
    }
    header nav .menu-toggle .menu-icon::before,
    header nav .menu-toggle .menu-icon::after {
        width: 25px;
    }
    header nav .menu-toggle .menu-icon::before {
        top: -6px;
    }
    header nav .menu-toggle .menu-icon::after {
        bottom: -6px;
    }

    header nav ul {
        right: 10px;
        z-index: 999999;
        padding: 15px;
    }
    header nav ul li {
        margin-bottom: 10px;
    }
    header nav ul li:last-child {
        margin-bottom: 0;
    }
    header nav ul li a {
        font-size: 16px;
    }
    header nav .cta-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    header nav .logo img {
        width: 25px;
        height: 25px;
        margin-right: 8px;
    }
    header nav .logo h1 {
        font-size: 18px;
    }
    header {
        padding: 15px 0;
    }
    header nav {
        padding: 0 10px;
    }
    header nav ul {
        right: 10px;
        padding: 15px;
    }
    header nav ul li {
        margin-bottom: 10px;
    }
}

/* Hero Section */
.hero {
    background-color: var(--header-shadow);
    color: #fff;
    margin: auto;
    text-align: center;
    height: 100%;
    align-content: center;
}
.hero h1 {
    font-size: 62px;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: capitalize;
}
.hero h1 span {
    color: var(--secondary-color);
    font-weight: 900;
}
.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}
.hero .cta-btn {

    background-color: transparent;
    backdrop-filter: blur(6px);
    background-color: #9999996e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.hero .cta-btn:hover {
    background-color: darken(var(--secondary-color), 10%);
}
.hero .cta-btn.secondary {
    background-color: var(--secondary-color);
    color: #fff;
}
.hero .cta-btn.secondary:hover {
    background-color: #f0f0f0;
    color: var(--secondary-color);
}
.hero .cta-btn.secondary.outline {
    background: transparent;
    border: 1px solid var(--secondary-color);
}
/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .hero {
        padding: 60px 10px;
        max-width: 100%;
    }
}
/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}
.hero-slides {
    display: flex;
    margin: auto;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    will-change: transform;
}
.hero-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 60px 20px;
    color: #fff;
    max-width: 550px;
    text-align: center;
}
.hero-slide img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}
.carousel-controls {
    padding: 30px;
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.hero-carousel button {
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.05;
}
.hero-carousel button .next{
    float: right;
}
.hero-carousel button:hover {
    background: var(--secondary-color);
}
.hero-indicators {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.hero-indicator {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.hero-indicator.active {
    opacity: 1;
    background: var(--secondary-color);
}
main{
    min-height: 62vh;
}
@media (max-width: 768px) {
    .hero-carousel {
        max-width: 100%;
        border-radius: 8px;
    }
    .hero-slide {
        padding: 30px 8px;
    }
    .hero-carousel button {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
}
.why-nethawk {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
}

.why-nethawk h2 {
    margin-bottom: 40px;
}

.why-nethawk h2 span {
    color: #0066cc;
}

.feature-header {
    text-align:center;
}

.feature img {
    width: 100%;
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}
.feature > div {
    padding:1rem;
}
.feature p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.feature a {
    display: block;
    width: max-content;
    text-decoration: none;
    border: 0.5px solid #003c78;
    color:#003c78;
    padding: 10px;
    border-radius: 10px;
}
#about .vector img{
    position: absolute;
    bottom: -15px;
    right: -50px;
}

.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-section .img-fluid {
  border-radius: 10px;
  object-fit: cover;
}

.contact-section .bg-dark {
  background-color: #111 !important;
  border-radius: 10px;
  font-size: 0.9rem;
}

.contact-section .bg-dark strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.contact-section ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.contact-section li {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #333;
}

.contact-section li i {
  color: #004aad;
  margin-right: 8px;
  font-size: 1rem;
}

.contact-section a {
  color: #004aad;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .bg-dark {
    font-size: 0.85rem;
  }
  .vector{
    right: 0 !important;
  }
}
.contact-section {
  background-color: #f8f9fa;
}

.visit-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  max-width: 90%;
  z-index: 2;
}

.visit-overlay h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-details li i {
  width: 28px;
  margin-top: 4px;
}

.contact-details a {
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}
.contact-section {
  background-color: #f8f9fa;
}

.visit-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  max-width: 90%;
  z-index: 2;
}

.visit-overlay h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.contact-details li > div{
    align-items: center;
}
.contact-details li i {
  width: 28px;
  font-size: 25px;
  margin-top: 4px;
}

.contact-details a {
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .visit-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 0.85rem;
  }
}