/* ==============================
   Global Styles
============================== */
:root {
  --primary: #2c7be5;       /* Corporate blue */
  --secondary: #28a745;     /* Green for call-to-actions */
  --dark: #333;
  --light: #f8f9fa;
  --gray: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", "Manrope", sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* ==============================
   Header / Navigation
============================== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  max-width: 220px;
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

/* Mobile Menu */
.menuIcon {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.overlay-menu {
  position: fixed;
  top: 0; left: -100%;
  width: 70%;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  padding: 40px 20px;
  transition: left 0.3s ease-in-out;
}

.overlay-menu.active {
  left: 0;
}

.overlay-links {
  list-style: none;
}

.overlay-links li {
  margin: 20px 0;
}

.overlay-links a {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: var(--dark);
}

.overlay-links a:hover {
  color: var(--primary);
}

/* ==============================
   Hero Section
============================== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 5%;
  background: linear-gradient(135deg, #e9f5ff, #ffffff);
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-family: "Russo One", sans-serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--gray);
}

.experience {
  font-weight: bold;
  color: var(--secondary);
  margin-top: 10px;
}

.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 80%;
  border-radius: 10px;
}

/* Buttons */
.btn-primary {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #218838;
}

/* ==============================
   Services
============================== */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 50px 5%;
  background: #fff;
}

.service-item {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.service-item img {
  max-width: 80%;
  margin-bottom: 15px;
}

.service-item p {
  font-weight: 600;
  margin-top: 10px;
  color: var(--gray);
}

/* ==============================
   Business Finance Section
============================== */
.business-finance {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 40px;
  padding: 60px 5%;
  background: #f2f8ff;
}

.text-block {
  flex: 1;
  min-width: 280px;
}

.text-block h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.text-block ul {
  list-style: disc;
  margin-left: 20px;
  color: var(--dark);
}

.image-block {
  flex: 1;
  min-width: 280px;
}

.image-block img {
  width: 100%;
  border-radius: 10px;
}

/* ==============================
   Clients Section
============================== */
.clients {
  padding: 60px 5%;
  text-align: center;
  background: #fff;
}

.clients h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.clients ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
  list-style: none;
  justify-content: center;
}

.clients li {
  font-weight: 600;
  color: var(--dark);
}

/* ==============================
   Our Services
============================== */
.our-services {
  padding: 50px 5%;
  background: #f9fafb;
}

.our-services h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

.our-services ul {
  list-style: none;
  padding-left: 0;
}

.our-services li {
  margin: 10px 0;
}

.our-services a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}

.our-services a:hover {
  text-decoration: underline;
}

/* ==============================
   Contact Section
============================== */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 5%;
  background: #fff;
}

.map iframe {
  border-radius: 10px;
  width: 100%;
  height: 300px;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* ==============================
   Footer
============================== */
footer {
  background: var(--dark);
  color: #fff;
  padding: 30px 5%;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.social-links a {
  margin: 0 10px;
}

.social-links img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.social-links img:hover {
  transform: scale(1.2);
}

/* ==============================
   Responsive
============================== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .menuIcon {
    display: block;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .business-finance {
    flex-direction: column;
  }
  .contact-section {
    flex-direction: column;
  }
}
/* Logo Size */
.logo {
  width: 150px; /* Adjust the width to your liking */
  height: auto;
}

/* Hero Image Size */
.hero-img img {
  width: 50%; /* Adjust the width to your liking */
  height: auto;
  margin: 0 auto;
}

/* Service Item Image Size */
.service-item img {
  width: 400px; /* Adjust the width to your liking */
  height: auto;
  margin: 10px;
   border-radius: 10px;
}

/* Business Finance Image Size */
.image-block img {
  width: 200%; /* Adjust the width to your liking */
  height: auto;
  margin: 0 auto;
 
}

/* Social Links Image Size */
.social-links img {
  width: 30px; /* Adjust the width to your liking */
  height: auto;
  margin: 10px;
  
}
body {
  font-family: 'Lato', sans-serif;
}
:root {
  --primary-color: #3498db; /* Adjust to your primary color */
  --secondary-color: #2ecc71; /* Adjust to your secondary color */
}
section {
  margin-bottom: 50px;
}

h1, h2, h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #2980b9; /* Adjust to your desired hover color */
}
