/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Top Header */
.top-header {
  background-color: #0056b3;
  padding: 20px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.top-header .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Header */
header {
  background-color: white;
  color: #333;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.logo img {
  height: 80px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-menu ul li {
  margin: 0 1rem;
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #1e1d19;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #086eda;
}

/* Services Dropdown */
.services-dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

.services-dropdown .services-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: auto;
}

.services-dropdown .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  padding: 0;
  margin-left: 5px; /* Ensure no gap between text and icon */
  display: flex;
  align-items: center;
}

.services-dropdown .dropdown-toggle i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.dropdown-toggle.active i {
  transform: rotate(180deg);
}

/* Dropdown Content */
.services-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  padding: 1rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: row;
  width: max-content;
}

.services-dropdown.active .dropdown-content {
  display: flex;
}

/* Dropdown Columns */
.dropdown-columns {
  display: flex;
  justify-content: space-between;
}

.dropdown-column {
  padding: 1rem;
  text-align: left;
}

.dropdown-column h3 {
  color: #1e1d19;
  margin-bottom: 0.5rem;
  font-weight: bold;
  border-bottom: 2px solid #086eda;
  padding-bottom: 0.5rem;
}

.dropdown-column a {
  color: #1e1d19;
  padding: 0.5rem 0;
  display: block;
  text-decoration: none;
}

.dropdown-column a:hover {
  color: #086eda;
}

/* Divider between Accounting and Tax Services */
.dropdown-divider {
  width: 1px;
  background-color: #ddd;
  margin: 0 20px;
  display: block;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  align-items: center;
}

/* Schedule Button */
.schedule-btn {
  background-color: #0077be;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-right: 10px;
}

.schedule-btn:hover {
  background-color: #004494;
  color: #fff;
}

/* Call Button */
.call-btn {
  background-color: #0077be;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.call-btn:hover {
  background-color: #005fa3;
}

/* Menu Toggle Button for Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Close Button for Mobile Menu */
.close-nav {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 10px;
}

/* Mobile Logo in Menu */
.mobile-logo {
  display: none;
  margin-bottom: 20px;
}

.mobile-logo img {
  height: 50px;
  width: auto;
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
  }

  .logo img {
    height: 50px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 250px;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;  /* Center align all nav items */
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1001;
    overflow-y: auto; /* Enables vertical scrolling */
  }

  .nav-menu.show {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .close-nav {
    display: block;
  }

  .mobile-logo {
    display: block;
  }

  .header-buttons {
    display: none;
  }

  .services-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .services-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    cursor: pointer;
  }

  .dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    padding: 0;
    margin-left: 5px; /* Ensure no gap between text and icon */
    display: flex;
    align-items: center;
  }

  .dropdown-toggle i {
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  .dropdown-toggle.active i {
    transform: rotate(180deg);
  }

  .services-dropdown .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0;
    display: none;
    flex-direction: column; /* Vertical for mobile */
    width: 100%;
  }

  .services-dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown-column {
    padding: 10px 0;
    width: 100%;
  }

  .dropdown-divider {
    display: none;
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    align-items: center;  /* Center align all nav items */
  }

  .nav-menu ul li {
    margin: 10px 0;
    text-align: center; /* Center align nav bar text only */
  }

  /* Ensure correct order of items */
  .nav-menu ul li:nth-child(1) {
    order: 1; /* Home */
  }

  .nav-menu ul li:nth-child(2) {
    order: 2; /* About */
  }

  .nav-menu ul li:nth-child(3) {
    order: 3; /* Services */
  }

  .nav-menu ul li:nth-child(4) {
    order: 4; /* Blog */
  }

  .nav-menu ul li:nth-child(5) {
    order: 5; /* Contact */
  }
}




/* hero Section */

.meet-founder {
  display: flex;
  flex-wrap: wrap; /* Allows content to wrap on smaller screens */
  justify-content: space-between;
  align-items: center;
  padding: 5% 10%;
  background-color: #E1EEF8;
  position: relative; /* Changed from sticky to relative for better control */
}

.content {
  flex: 1;
  padding-right: 5%;
  margin: 20px 20px;
}

.content h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 0.2em;
  text-align: justify;
}

.content h1 {
  font-size: 3em;
  color: #0066cc;
  margin-bottom: 0.2em;
  text-align: left;
  padding-block-end: auto;
}

.content p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 1.5em;
}

.cta-button {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: black;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-left: 1ch;
  margin-top: 20px; /* Added margin for spacing in smaller views */
}

.image-box {
  position: relative;
  width: 100%; /* Adjust to full width */
  max-width: 300px; /* Maximum width for larger screens */
  height: auto; /* Auto height to maintain aspect ratio */
  background-color: #93c7f4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 5px 5px #c0dcf5;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #0C70C5;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 2px solid white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.icon:hover {
  background-color: #0052a3;
}

.icon-top-left {
  top: 10px;
  left: 10px;
}

.icon-top-right {
  top: 10px;
  right: 10px;
}

.icon-bottom-left {
  bottom: 10px;
  left: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .meet-founder {
    flex-direction: column; /* Stack items vertically on smaller screens */
    align-items: center;
    padding: 5% 5%; /* Reduced padding for smaller screens */
  }

  .content {
    padding-right: 0; /* Remove extra padding for smaller screens */
    text-align: center; /* Center align text for smaller screens */
  }

  .content h2, .content h1, .content p {
    text-align: center; /* Center align text for smaller screens */
  }

  .image-container {
    justify-content: center; /* Center the image for smaller screens */
    margin-top: 20px; /* Added margin for spacing */
  }

  .image-box {
    width: 80%; /* Adjust width for smaller screens */
    max-width: 250px; /* Slightly smaller max-width */
  }

  .cta-button {
    width: 100%; /* Full width for buttons on smaller screens */
    margin-top: 15px; /* Add some space above the button */
  }
}

@media (max-width: 480px) {
  .content h2 {
    font-size: 1.8em; /* Smaller font size for very small screens */
  }

  .content h1 {
    font-size: 2.2em; /* Smaller font size for very small screens */
  }

  .content p {
    font-size: 1em; /* Adjust paragraph font size for very small screens */
  }
}
/*hero*/

/*about*/
.about-me{
  
  justify-content: center;
  padding: 0;
  background-color: #ffffff;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.about-section {
    text-align: center;
    background-color: #ffffff;
    padding: 40px 80px;
    max-width: 1400px;
    width: 100%
}

.about-section h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.about-section h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.about-section h3 a {
    color: #007bff;
    text-decoration: none;
}

.about-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.about-section .button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s;
}

.about-section .button:hover {
    transform: scale(1.1);
}

/*about*/
/* accademic Section */

/* Base Styles */
.academic-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 30px;
  position: relative;
}

.underLine {
  width: 100px;
  height: 3px;
  background-color: #007bff;
  margin: 0 auto 10px;
}

.accolades {
  display: flex;
  justify-content: space-around;
  margin-bottom: 60px;
  margin-top: 70px;
  padding: 0 50px;
}

.accolade, .membership {
  text-align: center;
}

.accolade img, .membership img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  margin-top: 10px;
}

.membership {
  margin: 20px auto;
  max-width: 200px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .accolades {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    padding: 0 20px;
  }

  .accolade {
    margin-bottom: 30px;
  }

  .membership {
    max-width: 250px;
    margin: 30px auto;
  }

  .section-heading a {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .section-heading a {
    font-size: 20px;
  }

  .accolades, .membership {
    padding: 0 10px;
  }

  .accolade, .membership {
    margin-bottom: 20px;
  }

  .underLine {
    width: 80px;
    height: 2px;
  }

  .text-content h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  .connect-button {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Welcome Section */

.welcome-section {
  background-color: #d9e8f5;
  display: flex;
  flex-direction: column; /* Stacks content vertically by default */
  align-items: center;
  padding: 20px; /* Reduced padding for smaller screens */
  border-radius: 8px;
  box-shadow: 0 10px 15px 2px rgba(0, 0, 0, 0.1);
  max-width: 90%; /* Adjust width to fit smaller screens */
  width: 100%;
  margin: 40px auto; /* Centered and responsive margin */
  text-align: center; /* Centered text */
}

.text-content {
  margin-bottom: 20px; /* Space between text and button */
}

.text-content h1 {
  font-size: 24px;
  color: #0056b3;
  margin: 0;
  line-height: 1.2;
}

.text-content span {
  display: block; /* Makes the subheading appear below the heading */
  color: #000;
  font-weight: bold;
}

.button-container {
  margin-top: 10px; /* Space between text and button */
}

.connect-button {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: transform 0.3s, background-color 0.3s;
  display: inline-block;
}
.connect-button:hover {
  transform: scale(1.1);
  background-color: #0056b3;
}

/* Media Query for larger screens */
@media (min-width: 768px) {
  .welcome-section {
    flex-direction: row; /* Side-by-side layout on larger screens */
    justify-content: space-between; /* Space between text and button */
    align-items: center; /* Center align items vertically */
    padding: 50px 40px; /* Larger padding for bigger screens */
    max-width: 800px;
    text-align: left; /* Align text left on larger screens */
  }

  .text-content {
    margin-bottom: 0; /* Remove margin for side-by-side layout */
  }

  .button-container {
    margin-top: 0; /* Remove margin-top for side-by-side layout */
  }
}

@media (max-width: 480px) {
  .section-heading a {
    font-size: 20px; /* Smaller font size for very small screens */
  }

  .text-content h1 {
    font-size: 20px; /* Further reduced font size */
    padding-left: 0; /* No padding for smaller screens */
  }

  .connect-button {
    font-size: 14px; /* Smaller font size for the button */
    padding: 8px 10px; /* Smaller padding for button */
    width: 90%; /* Adjusted width for very small screens */
  }
}


/* Area Serverd*/
.areas-served-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #E1EEF8;
  box-sizing: border-box;
}

.shamsi {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.shamsi:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: #0066cc;
}

p.ex1 {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  box-sizing: border-box;
}

.map-container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.map-container h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
}

.view-map {
  display: block;
  text-align: right;
  color: #0066cc;
  text-decoration: none;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .map-grid {
      grid-template-columns: repeat(2, 1fr); /* Adjust to two columns for tablets */
  }
}

@media (max-width: 768px) {
  .map-grid {
      grid-template-columns: repeat(2, 1fr); /* Keep two columns for smaller screens */
  }

  .shamsi {
      font-size: 28px; /* Adjust heading size for smaller screens */
  }

  p.ex1 {
      font-size: 15px; /* Adjust paragraph font size */
  }
}

@media (max-width: 480px) {
  .map-grid {
      grid-template-columns: 1fr; /* Single column layout for mobile devices */
  }

  .shamsi {
      font-size: 24px; /* Further adjust heading size for mobile */
  }

  p.ex1 {
      font-size: 14px; /* Further adjust paragraph font size */
  }

  .map-container {
      padding: 15px; /* Reduce padding for smaller screens */
  }

  .view-map {
      font-size: 14px; /* Adjust link font size for readability */
  }
}

/* area served*/
/* sign-up*/
.footer-section {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: left;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.footer-row {
  display: flex;
  flex-direction: column; /* Stacks items vertically by default */
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-section,
.info-section,
.signup-section {
  flex: 1 1 100%; /* Full width on smaller screens */
  max-width: 300px; /* Max width for larger screens */
  margin-bottom: 20px; /* Space between items */
  text-align: center; /* Center-align for smaller screens */
}

.logo-section img {
  width: 150px;
  margin-bottom: 20px;
}

.logo-section p {
  margin: 10px 0;
  font-size: 16px;
}

.logo-section a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.social-icons {
  margin-top: 20px;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #007bff;
  color: #007bff;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  background-color: #007bff;
  color: white;
}

.info-section h4,
.signup-section h4 {
  color: #0056b3;
  text-decoration: underline;
  margin-bottom: 20px;
}

.info-section ul {
  list-style: none;
  padding: 0;
  text-align: center; /* Center-align list items on smaller screens */
}

.info-section ul li {
  margin: 15px 0;
}

.info-section ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: color 0.3s ease;
}

.info-section ul li a:hover {
  color: #0056b3;
}

.signup-section form {
  margin-top: 15px;
  text-align: center; /* Center-align form elements */
}

.signup-section input[type="text"],
.signup-section input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.signup-section button {
  padding: 10px 20px;
  background-color: #0056b3;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signup-section button:hover {
  background-color: #003f7f;
}

.marketing {
  margin-top: 20px;
  font-size: 12px;
}

.activecamp {
  font-size: 16px;
  margin-top: 3px;
}

.activecamp a {
  color: #007bff;
  text-decoration: none;
}

/* Media Query for larger screens */
@media (min-width: 768px) {
  .footer-row {
      flex-direction: row; /* Side-by-side layout for larger screens */
      justify-content: space-between;
      align-items: flex-start;
  }

  .logo-section,
  .info-section,
  .signup-section {
      flex: 1 1 30%; /* Equal width for each section */
      max-width: 300px;
      text-align: left; /* Align text to the left for larger screens */
  }

  .info-section ul {
      text-align: left; /* Align list items to the left */
  }

  .signup-section form {
      text-align: left; /* Align form elements to the left */
  }
}

@media (min-width: 1024px) {
  .footer-section {
      padding: 60px 40px; /* Increased padding for large screens */
  }

  .footer-row {
      max-width: 1400px; /* Larger container for big screens */
  }

  .logo-section,
  .info-section,
  .signup-section {
      max-width: 400px; /* Larger max width for sections */
  }
}


/* sign-up*/
/*footer*/
footer {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 0;
  font-size: 14px;
  color: #333;
  width: 100%;
  background-color: #f9f9f9; /* Light gray background for the overall footer */
}

.footer-container {
  background-color: #d7eaf3; /* Light blue background for the copyright section */
  padding: 15px 20px;
  margin: 0 auto;
  width: 100%; /* Full width to fit the background size */
  box-sizing: border-box;
}

.powered-by {
  margin: 0;
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.powered-by a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex; /* To align the image and text */
  align-items: center;
  margin-left: 5px; /* Space between text and link */
}

.footer-logo {
  width: 150px; /* Adjust the width for desktop */
  height: auto;
  margin-right: 5px; /* Space between the logo and the text */
  padding-left: 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 10px 0;
}

.footer-links a {
  color: #007bff;
  text-decoration: none;
  padding: 0 10px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.divider {
  width: 1px;
  height: 14px;
  background-color: #333;
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      width: 100%; /* Full width on smaller screens */
  }

  .powered-by {
      flex-direction: column; /* Stack logo and text vertically */
      text-align: center; /* Center-align text */
  }

  .footer-logo {
      width: 130px; /* Smaller width for mobile screens */
  }

  .footer-links {
      flex-direction: column; /* Stack links vertically */
      align-items: center;
  }

  .footer-links a {
      padding: 5px 0;
  }

  .divider {
      display: none; /* Hide dividers on small screens */
  }
}

@media (max-width: 480px) {
  .powered-by {
      font-size: 12px; /* Smaller font size for very small screens */
  }

  .footer-links a {
      font-size: 12px; /* Adjust link font size for small screens */
  }
}

/*footer*/










