/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #003366;
    --secondary-color: #0066cc;
    --accent-color: #ff9900;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --white: #ffffff;
    --success-green: #28a745;
    --danger-red: #dc3545;
  }
  
  body {
    font-family: 'EB Garamond', serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Typography */
  h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 0.5em;
    color: var(--primary-color);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  a:hover {
    color: var(--accent-color);
  }
  
  /* Section Styling */
  section {
    padding: 80px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    
    
  }
  
  .section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 1000;
  }
  
  /* Header and Navigation */
  header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
  }
  
  .logo-container {
    max-width: 200px;
  }
  
  .logo {
    max-width: 100%;
    height: auto;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-links li a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu a {
    padding: 15px 20px;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid var(--medium-gray);
  }
  
  .mobile-menu a:last-child {
    border-bottom: none;
  }
  
  /* Home Section */
  #home {
    background-color: var(--light-gray);
    padding: 100px 0;
  }
  
  .home-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
  
  .home-text {
    flex: 1;
  }
  
  .home-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--secondary-color);
  }
  
  .description {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .home-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  
  .home-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* About Section */
  #about {
    background-color: var(--white);
  }
  
  .about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
  }
  
  /* Services Section */
  #services {
    background-color: var(--light-gray);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .service-card h3 {
    margin-bottom: 15px;
  }
  
  /* Why Choose Us Section */
  #why-choose-us{
    background-color: var(--white);
  }
  
  .cards-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
  
  .choice-card {
    background-color: var(--light-gray);
    padding: 30px;  
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .choice-card:hover {
    transform: scale(1.05) rotateX(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}
  
  .choice-card h3 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .choice-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
  }



  
  .choice-card ul {
    list-style: none;
  }
  
  .choice-card li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .icon-red {
    color: var(--danger-red);
  }
  
  .icon-green {
    color: var(--success-green);
  }

  .choice-card li:hover .icon {
    transform: scale(1.2) rotate(360deg);
}

  
  /* Tax Consultancy Process */
  #tax-consult {
    background-color: var(--light-gray);
    padding: 100px 0;
  }
  
  .tax-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .tax-header h2 {
    font-size: 2.2rem;
  }
  
  .tax-header h2 span {
    color: var(--accent-color);
  }
  
  .process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
  }
  
  .step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .connector {
    flex-grow: 1;
    height: 3px;
    background-color: var(--secondary-color);
    position: relative;
    max-width: 100px;
  }
  
  .connector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--secondary-color);
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    margin: 30px auto 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s;
    display: block;
    max-width: 300px;
  }
  
  .cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: var(--white);
  }
  
  .cta-button i {
    margin-left: 10px;
  }
  
  /* Counter Section */
  .counter-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
  }
  
  .counter-section .section-title,
  .counter-section .section-description {
    color: var(--white);
  }
  
  .counter-section .section-title::after {
    background-color: var(--accent-color);
  }
  
  .counters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .counter-item {
    padding: 20px;
  }
  
  .counter-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
  }
  
  .counter-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .counter-item p {
    font-size: 1.2rem;
  }
  
  /* Contact Section */
  #contact {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
  }
  
  #contact .section-title {
    color: var(--white);
  }
  
  #contact .section-title::after {
    background-color: var(--accent-color);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
  }
  
  .contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
  }
  
  textarea {
    resize: vertical;
  }
  
  button[type="submit"] {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
    font-size: 1.1rem;
  }
  
  button[type="submit"]:hover {
    background-color: var(--secondary-color);
  }
  
  .contact-info {
    color: var(--white);
  }
  
  .contact-info h3 {
    color: var(--white);
    margin-top: 0;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  
  .social-links {
    margin-top: 40px;
  }
  
  .social-icons {
    display: inline-flex;
    gap: 15px;
  }
  
  .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    color: var(--white);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 50px;
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  /* Animation Classes */
  .animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .animate-fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Delay Classes */
  .delay-100 { transition-delay: 0.1s; }
  .delay-300 { transition-delay: 0.3s; }
  .delay-500 { transition-delay: 0.5s; }
  .delay-700 { transition-delay: 0.7s; }
  .delay-900 { transition-delay: 0.9s; }
  .delay-1100 { transition-delay: 1.1s; }
  
  /* Responsive Media Queries */
  @media (max-width: 992px) {
    .home-content {
      flex-direction: column-reverse;
      text-align: center;
    }
    
    .home-image {
      justify-content: center;
      margin-bottom: 30px;
    }
    
    .nav-links {
      gap: 20px;
    }
    
    .process-flow {
      justify-content: center;
      gap: 40px;
    }
    
    .connector {
      display: none;
    }
    
    .step {
      margin-bottom: 30px;
    }
    
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    section {
      padding: 60px 0;
    }
    
    .nav-links {
      display: none;
    }
    
    .hamburger {
      display: block;
    }
    
    .mobile-menu.active {
      display: flex;
    }
    
    .home-text h1 {
      font-size: 2.5rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .cards-container {
      grid-template-columns: 1fr;
    }
    
    .form-row {
      grid-template-columns: 1fr;
    }
    
    .counters-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    .home-text h1 {
      font-size: 2rem;
    }
    
    .description {
      font-size: 1rem;
    }
    
    .counters-container {
      grid-template-columns: 1fr;
    }
    
    .contact-form {
      padding: 25px;
    }
    
    .tax-header h2 {
      font-size: 1.8rem;
    }
  }