/* -----------------------------------
   Global Styles
----------------------------------- */
body {
    font-family: "Poppins", sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
}

section {
    padding: 80px 0;
}

html {
    scroll-behavior: smooth;
}

/* -----------------------------------
   Navbar
----------------------------------- */
.navbar {
    padding: 15px 0;
    background-color: #f4ca2f !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.navbar-container {
    padding-left: 16px !important;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #000 !important;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: #0d6efd !important;
    font-weight: 600;
}

.nav-link:hover {
    color: #0d6efd;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* -----------------------------------
   Buttons
----------------------------------- */
.btn-primary {
    background-color: #f4ca2f !important;
    border-color: #f4ca2f !important;
    color: #000 !important;
    font-weight: 600;
    border-radius: 6px !important;
    padding: 10px 25px;
}

.btn-primary:hover {
    background-color: #e0b82b !important;
    border-color: #e0b82b !important;
    color: #000 !important;
}

/* -----------------------------------
   Hero Section (Solid Soft Gray)
----------------------------------- */
.hero {
    background-color: #f8f9fa !important; /* soft gray */
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

/* Hero text */
.hero h1 {
    font-size: 2.6rem;
    line-height: 1.3;
    color: #000;
}

.hero p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Hero images */
.hero img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* -----------------------------------
   Our Services
----------------------------------- */
#services {
    background-color: #f8f9fa !important;
}

.service-card {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 30px 20px;
    transition: 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-card .icon i {
    color: #f4ca2f;
}

.service-card p {
    text-align: justify;
    color: #555;
}

/* -----------------------------------
   Connectivity Services
----------------------------------- */
#connectivity {
    background-color: #f8f9fa;
}

.connectivity-card {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 30px 20px;
    transition: 0.3s ease;
    height: 100%;
}

.connectivity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.connectivity-card .icon i {
    color: #f4ca2f;
}

/* -----------------------------------
   Testimonials
----------------------------------- */
#testimonials {
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: #fff;
    border-left: 4px solid #f4ca2f;
    padding: 25px;
    height: 100%;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* -----------------------------------
   About Us
----------------------------------- */
#about i {
    color: #f4ca2f !important;
}

#about img {
    border-radius: 12px;
    transition: 0.3s ease;
}

#about img:hover {
    transform: scale(1.03);
}

/* -----------------------------------
   Contact Section
----------------------------------- */
.contact-section {
    background-color: #f4ca2f;
    padding: 100px 0;
}

.contact-section h2 {
    color: #000;
}

.contact-section p {
    color: #333;
}

.contact-section .form-control {
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 12px;
}

.contact-section .form-control:focus {
    border-color: #000;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.contact-section .btn-dark {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 25px;
}

.contact-section .btn-dark:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .contact-section {
        text-align: center;
    }
}

/* -----------------------------------
   Footer (Left-Aligned Contact Info)
----------------------------------- */
.footer-section {
    background-color: #111;
    color: #fff;
    padding: 50px 0;
}

.footer-content {
    max-width: 500px;
    text-align: left;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-block {
    margin-bottom: 20px;
}

.footer-label {
    font-weight: 700;
    margin-bottom: 3px;
    color: #f4ca2f; /* yellow accent */
}

.footer-text {
    margin: 0;
    font-size: 1rem;
    color: #ddd;
}

@media (max-width: 768px) {
    .footer-content {
        max-width: 100%;
    }
}
