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

    body {
      font-family: 'Work Sans', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8; /* Lighter background for a modern feel */
    }

    /* Header & Navigation */
    header {
      background: #fff;
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Stronger shadow */
      position: sticky;
      top: 0;
      z-index: 999;
    }

    header img {
      height: 70px; /* Slightly smaller logo */
    }

    .navbar {
      background-color: #fff;
    }

    .nav-menu {
      list-style: none;
      display: flex;
      gap: 30px;
      text-align: center;
      margin: 0;
      padding: 0;
    }

    .nav-item a {
      text-decoration: none;
      color: #000;
      font-weight: 600; /* Bolder font for navigation */
      font-size: 18px; /* Slightly smaller font size */
      padding-bottom: 8px; /* Increased padding */
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-item a::after {
      content: '';
      display: block;
      width: 0%;
      height: 4px; /* Thicker underline */
      background-color: #FFD700; /* Golden yellow for accent */
      transition: width 0.3s ease-in-out;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    .nav-item.active a::after,
    .nav-item a:hover::after {
      width: 100%;
    }

    .nav-item a:hover {
      color: #FFD700; /* Accent color on hover */
    }

    /* Hamburger Menu */
    .hamburger-menu {
      display: none; /* Hidden by default on desktop */
      font-size: 28px;
      cursor: pointer;
      color: #333;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .hamburger-menu .fa-times {
      display: none; /* Hide close icon initially */
    }

    .hamburger-menu.active .fa-bars {
      display: none; /* Hide bars icon when active */
    }

    .hamburger-menu.active .fa-times {
      display: block; /* Show close icon when active */
    }

    /* Hero Section */
    .slider-container {
      position: relative;
      max-width: 100%;
      height: 600px; /* Slightly reduced height */
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      color: white;
      text-align: center;
      background-repeat: no-repeat;
      background-size: cover; /* Changed to cover for better image scaling */
      background-position: center;
      padding: 280px 20px; /* Adjusted padding */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide.active {
      opacity: 1;
    }

    .hero-content {
      background: rgba(0, 0, 0, 0.5); /* Darker overlay for readability */
      padding: 25px 40px;
      border-radius: 12px;
      animation: fadeInUp 1s ease forwards;
    }

    .hero h1 {
      font-size: 3.5rem; /* Larger font size for impact */
      margin-bottom: 15px;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.3rem;
      font-weight: 400;
    }

    @keyframes fadeInUp {
      0% {
        transform: translateY(30px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* General Sections */
    .section {
      padding: 60px 10px; /* Increased padding */
      max-width: 1200px;
      margin: auto;
      border-radius: 12px;
      margin-bottom: 30px;
      
    }

    .videosection {
      padding: 40px 20px; /* Adjusted padding */
      max-width: 900px; /* Wider video section */
      margin: auto;
      text-align: center;
    }

    .section-title {
      font-size: 2.2rem; /* Larger title */
      text-align: center;
      margin-bottom: 50px; /* More space below title */
      color: #222; /* Darker color */
      position: relative;
      font-weight: 700;
    }

    .section-title::after {
      content: "";
      width: 80px; /* Wider underline */
      height: 5px; /* Thicker underline */
      background-color: #FFD700; /* Golden yellow accent */
      display: block;
      margin: 15px auto 0;
      border-radius: 3px;
    }

    hr {
      height: 1px;
      width: 80%;
      margin: 60px auto; /* Increased margin */
      background-color: #eee;
      border: none;
    }

    /* Services Section */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Larger min-width for cards */
      gap: 35px; /* Increased gap */
    }

    .service-card {
      background: #fdfdfd;
      border-radius: 15px; /* More rounded corners */
      text-align: center;
      padding: 30px; /* Increased padding */
      box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* More prominent shadow */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden; /* For holographic effect */
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-10px); /* Lift on hover */
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .service-card img {
      width: 100px;
      height: 100px; /* Fixed height for consistency */
      object-fit: contain;
      margin-bottom: 20px;
    }

    .service-card h3 {
      color: #000;
      margin: 15px 0 15px;
      font-size: 1.6rem; /* Larger heading */
      font-weight: 700;
    }

    .service-card p {
      font-size: 1rem;
      color: #666;
    }

    /* Holographic Effect for Service Cards (Refined) */
    .holographic-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      width: 100%;
    }

    .holographic-card::before {
      content: '';
      position: absolute;
      top: -150%;
      left: -150%;
      width: 300%;
      height: 300%;
      background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: rotate(45deg);
      transition: all 0.5s ease;
      opacity: 0;
      pointer-events: none;
    }

     .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            max-width: 100%;
        }
        .video-container iframe, .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    .service-card:hover .holographic-card::before {
      opacity: 1;
      top: -50%;
      left: -50%;
    }

    /* About Us Section */
    .about-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px; /* Increased gap */
      align-items: flex-start; /* Align items to the start */
      justify-content: center;
    }

    .tabs {
      flex: 1;
      min-width: 220px;
      max-width: 250px;
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 20px 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .tab {
      font-size: 1.3em;
      margin: 15px 0;
      padding: 12px 20px; /* Increased padding */
      cursor: pointer;
      color: #555;
      border-left: 5px solid transparent; /* Thicker border */
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .tab.active {
      color: #FFD700; /* Accent color */
      border-left: 5px solid #FFD700;
      font-weight: bold;
      background-color: #fff;
      box-shadow: 2px 0 8px rgba(0,0,0,0.05);
    }

    .content {
      flex: 2;
      min-width: 350px; /* Increased min-width */
      padding: 20px;
      background-color: #fdfdfd;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .content p {
      font-size: 1.15rem; /* Slightly larger font */
      line-height: 1.8;
      color: #444;
    }

    .image-container {
      flex: 1;
      min-width: 300px; /* Larger min-width for image */
      text-align: center;
    }

    .image-container img {
      max-width: 100%;
      border-radius: 15px; /* More rounded corners */
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Stats Section */
    .stats-wrapper {
      background: linear-gradient(135deg, #f0f0f0, #e0e0e0); /* Gradient background */
      padding: 50px 60px;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      margin-top: 60px;
    }

    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjusted min-width */
      gap: 50px; /* Increased gap */
      text-align: center;
    }

    .stat-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .stat-block:hover {
      transform: translateY(-5px);
    }

    .stat-icon {
      font-size: 40px; /* Larger icon */
      color: #FFD700; /* Golden yellow accent */
      margin-bottom: 15px;
    }

    .stat-number {
      font-size: 40px; /* Larger number */
      font-weight: 700;
      color: #000;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 18px; /* Larger label */
      color: #555;
      font-weight: 600;
    }

    /* Clients Section */
    .subheading {
      color: #000;
      font-size: 24px; /* Larger subheading */
      margin: 40px 0 30px;
      font-weight: bold;
      text-align: center;
    }

    .grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 50px; /* Increased gap */
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .agency {
      width: 150px; /* Larger agency card */
      text-align: center;
      padding: 15px;
      border-radius: 10px;
      background-color: #fdfdfd;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .agency:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .agency img {
      width: 120px; /* Larger image in agency card */
      height: 70px; /* Adjusted height */
      object-fit: contain;
      margin-bottom: 15px;
    }

    .agency p {
      margin: 10px 0;
      font-weight: bold;
      color: #333;
    }

    .learn {
      color: #007bff; /* Blue link for learn more */
      font-size: 14px;
      text-decoration: none;
      font-weight: 600;
    }

    .learn:hover {
      text-decoration: underline;
    }

    /* CEO Message Section */
    .ceo-message {
      display: flex;
      gap: 3rem; /* Increased gap */
      align-items: flex-start;
      padding: 40px 20px; /* Adjusted padding */
      max-width: 1200px;
      margin: auto;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      margin-top: 30px;
    }

    .ceo-message-left {
      width: 10%;
      text-align: center;
    }

    .ceo-message-center {
      flex: 1; /* Allows center content to grow */
      font-size: 1.1rem;
      line-height: 1.8;
      color: #444;
    }

    .ceo-message-center p {
      margin-bottom: 20px;
    }

    .ceo-message-right {
      width: 30%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .ceo-photo {
      width: 200px; /* Fixed width for photo */
      height: 200px; /* Fixed height for photo */
      border-radius: 50%; /* Circular photo */
      object-fit: cover;
      border: 5px solid #FFD700; /* Golden yellow border */
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .ceo-name {
      margin-top: 20px;
      font-size: 32px; /* Larger name font */
      color: #d12c2c; /* Red color for name */
      font-weight: 700;
      letter-spacing: 1px;
    }

    .ceo-role span {
      display: block;
      font-size: 22px; /* Larger role font */
      font-weight: 600;
      color: #333;
      margin-top: 5px;
    }

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

    .social-icons a {
      margin: 0 10px;
      display: inline-block;
    }

    .social-icons img {
      width: 36px;
      height: 36px;
      transition: transform 0.3s ease;
    }

    .social-icons img:hover {
      transform: scale(1.1);
    }

    /* Contact Section */
    .contact-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px; /* Increased gap */
      align-items: flex-start;
      justify-content: center;
    }

    .info, .map {
      flex: 1 1 45%;
      min-width: 300px; /* Minimum width for responsiveness */
    }

    .info h3 {
      font-size: 1.8rem;
      color: #333;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .info p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 10px;
    }

    iframe {
      width: 100%;
      height: 400px; /* Taller map */
      border: 0;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Footer */
    footer {
      background: #1a1a1a; /* Darker footer */
      color: #f0f0f0;
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
     
      background-size: cover;
      background-position: center;
      opacity: 0.1; /* Subtle overlay */
      z-index: 1;
    }

    footer > div {
      position: relative;
      z-index: 2;
    }

    footer h3 {
      color: #FFD700; /* Golden yellow for footer headings */
      margin-bottom: 20px;
      font-size: 1.6rem;
    }

    footer p {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    footer .fab {
      font-size: 28px;
      margin-right: 20px;
      transition: color 0.3s ease;
    }

    footer .fab:hover {
      color: #FFD700;
    }

    footer img {
      width: 200px; /* Larger footer logo */
      border-radius: 15px;
      padding: 15px;
      background-color: rgba(255,255,255,0.05);
    }

    /* Mobile Styles (Media Queries) */
    @media (max-width: 992px) {
      header {
        padding: 15px 20px;
      }

      .nav-menu {
        gap: 20px;
      }

      .nav-item a {
        font-size: 16px;
      }

      .slider-container {
        height: 500px;
      }

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

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

      .section-title {
        font-size: 2.2rem;
      }

      .services {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }

      .tab {
        font-size: 1.1em;
        padding: 10px 15px;
      }

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

      .stats-wrapper {
        padding: 40px 30px;
      }

      .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
      }

      .stat-icon {
        font-size: 32px;
      }

      .stat-number {
        font-size: 38px;
      }

      .stat-label {
        font-size: 16px;
      }

      .ceo-message {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .ceo-message-left {
        width: 100%;
      }

      .ceo-message-center, .ceo-message-right {
        width: 100%;
      }

      .ceo-photo {
        margin-bottom: 20px;
      }

      .contact-content {
        flex-direction: column;
        align-items: center;
      }

      .info, .map {
        width: 100%;
        min-width: unset;
      }

      footer > div {
        flex-direction: column;
        align-items: center;
      }

      footer > div > div {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      header {
        flex-direction: row; /* Keep logo and hamburger on same row */
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
      }

      header img {
        margin-bottom: 0; /* No margin-bottom for inline */
      }

      .hamburger-menu {
        display: block; /* Show hamburger on mobile */
      }

      .navbar {
        position: absolute;
        top: 100px; /* Position below header, adjust as needed */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
        transform: translateX(-100%); /* Hide off-screen initially */
        transition: transform 0.4s ease-in-out;
        z-index: 998; /* Below hamburger menu */
      }

      .navbar.active {
        transform: translateX(0); /* Slide in when active */
      }

      .nav-menu {
        flex-direction: column; /* Stack menu items vertically */
        align-items: center; /* Center items */
        gap: 15px; /* Adjust gap for vertical stacking */
        width: 100%;
      }

      .nav-item {
        width: 100%;
        text-align: center;
      }

      .nav-item a {
        padding: 10px 0;
        font-size: 17px;
        display: block; /* Make links full width of item */
      }

      .nav-item a::after {
        display: none; /* Hide underline for mobile menu */
      }

      .slider-container {
        height: 400px;
      }

      .hero-content {
        padding: 20px 30px;
      }

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

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

      .section {
        padding: 50px 15px;
      }

      .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
      }

      .services {
        grid-template-columns: 1fr; /* Single column on small screens */
      }

      .about-container {
        flex-direction: column;
        gap: 30px;
      }

      .tabs {
        width: 100%;
        max-width: unset;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
      }

      .tab {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 10px 15px;
        margin: 5px;
        white-space: nowrap;
      }

      .tab.active {
        border-left: none;
        border-bottom: 3px solid #FFD700;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      }

      .content {
        width: 100%;
        min-width: unset;
        padding: 15px;
      }

      .image-container {
        width: 100%;
        min-width: unset;
      }

      .stats-wrapper {
        padding: 30px 15px;
      }

      .stats-container {
        grid-template-columns: 1fr; /* Single column for stats */
        gap: 20px;
      }

      .stat-icon {
        font-size: 28px;
      }

      .stat-number {
        font-size: 32px;
      }

      .stat-label {
        font-size: 15px;
      }

      .subheading {
        font-size: 20px;
        margin: 30px 0 20px;
      }

      .agency {
        width: 130px;
        margin: 0 5px; /* Adjust margin for smaller grids */
      }

      .agency img {
        width: 100px;
        height: 60px;
      }

      .ceo-message {
        padding: 30px 15px;
        gap: 2rem;
      }

      .ceo-photo {
        width: 150px;
        height: 150px;
      }

      .ceo-name {
        font-size: 28px;
      }

      .ceo-role span {
        font-size: 18px;
      }

      .videosection iframe {
        height: 250px; /* Smaller video height */
      }

      .info, .map {
        padding: 0 10px;
      }

      .info h3 {
        font-size: 1.5rem;
      }

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

      iframe {
        height: 300px;
      }

      footer {
        padding: 40px 20px;
      }

      footer h3 {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 480px) {
      header img {
        height: 60px;
      }

      .navbar {
        top: 85px; /* Adjust position for smaller header */
      }

      .nav-item a {
        font-size: 14px;
        padding-bottom: 5px;
      }

      .slider-container {
        height: 300px;
      }

      .hero-content {
        padding: 15px 20px;
      }

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

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

      .section {
        padding: 40px 10px;
      }

      .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
      }

      .service-card {
        padding: 20px;
      }

      .service-card h3 {
        font-size: 1.5rem;
      }

      .tab {
        padding: 8px 12px;
        font-size: 0.95em;
      }

      .content p {
        font-size: 0.9rem;
      }

      .stats-wrapper {
        padding: 20px 10px;
      }

      .stat-icon {
        font-size: 24px;
      }

      .stat-number {
        font-size: 28px;
      }

      .stat-label {
        font-size: 14px;
      }

      .ceo-photo {
        width: 120px;
        height: 120px;
      }

      .ceo-name {
        font-size: 24px;
      }

      .ceo-role span {
        font-size: 16px;
      }

      .videosection iframe {
        height: 200px;
      }

      .info h3 {
        font-size: 1.3rem;
      }

      .info p {
        font-size: 0.9rem;
      }

      iframe {
        height: 250px;
      }

      footer {
        padding: 30px 15px;
      }

      footer h3 {
        font-size: 1.2rem;
      }

      footer .fab {
        font-size: 24px;
        margin-right: 15px;
      }

      footer img {
        width: 150px;
      }
    }