   /* ===== GENERAL STYLES ===== */
    :root {
      --footer-color: #2c3e50;
      --footer-text: #ecf0f1;
      --accent-color: #3498db;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
    }
    
    /* ===== HEADER & NAVIGATION ===== */
    .top-header {
      background-color: #F5F5F5;
      color: var(--footer-text);
      padding: 0.3rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      min-height: 110px;
    }
    
    
    .logo-container {
      display: flex;
      align-items: center;
      gap: 1rem;
      height: 100%;
    }
    
    .logo {
      height: 100px;
      width: 280px;
      min-width: 250px;
      max-width: 350px;
      object-fit: cover;
      padding: 10px 20px;
      border-radius: 8px;
    }
    
    .company-name {
      font-size: 1.6rem;
      font-weight: bold;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    .main-nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }
    
    .main-nav a {
      color: black;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .main-nav a:hover {
      color: var(--accent-color);
    }
    
    .mobile-menu-btn {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    /* ===== SECOND NAVBAR ===== */
    .tag-nav {
      background-color: var(--footer-color);
      color: var(--footer-text);
      padding: 0.5rem 2rem;
      position: fixed;
      top: 110px;
      width: 100%;
      z-index: 999;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    
    .tag-nav.hide-on-scroll {
      transform: translateY(-100%);
    }
    
    .tag-nav-container {
      display: flex;
      justify-content: center;
    }
    
    .tag-nav-container ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
      overflow-x: auto;
      padding: 0.5rem 0;
      scrollbar-width: thin;
      margin: 0 auto;
    }
    
    .tag-nav-container a {
      color: var(--footer-text);
      text-decoration: none;
      font-weight: 500;
      white-space: nowrap;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .tag-nav-container a:hover {
      color: var(--accent-color);
    }
    
    
    /* ===== HERO SECTION ===== */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                  url(./welcome\ to\ Grace\ cool\ ac\ picture.jpg) no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 0 2rem;
      margin-top: 110px;
      
    }
    
    .hero-content {
      max-width: 800px;
    }
    
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .btn {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s;
    }
    
    .btn:hover {
      background-color: #2980b9;
    }
    
    /* ===== SERVICES SECTION ===== */
    #services {
      padding: 5rem 2rem;
      background-color: #f9f9f9;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      font-size: 2.5rem;
      color: var(--footer-color);
    }
    
    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .service-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
    }
    
    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .service-content {
      padding: 1.5rem;
    }
    
    .service-content h3 {
      margin-bottom: 1rem;
      color: var(--footer-color);
    }
    
    .content-preview {
      max-height: 100px;
      overflow: hidden;
      transition: max-height 0.5s ease;
      margin-bottom: 1rem;
    }
    
    .content-preview.expanded {
      max-height: 1000px;
    }
    
    .read-more-btn {
      background: none;
      border: none;
      color: var(--accent-color);
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    /* ===== ABOUT SECTION ===== */
    .about-section {
      padding: 5rem 2rem;
      background-color: white;
    }
    
    .about-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .about-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .tagline {
      font-size: 1.2rem;
      color: #7f8c8d;
      font-style: italic;
    }
    
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    
    .about-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .about-text h3 {
      margin-bottom: 1rem;
      color: var(--footer-color);
    }
    
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .expertise-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--footer-color);
    }
    
    .expertise-item i {
      color: var(--accent-color);
    }
    
    /* ===== PASSIONATE SECTION ===== */
    .passionate-section {
      padding: 5rem 2rem;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                  url('./we\ are\ passionate\ bg\ pic.png') no-repeat center center/cover;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .passionate-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    .passionate-container h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      animation: fadeInDown 1.5s;
    }
    
    .passionate-container p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      animation: fadeInUp 1.5s;
    }
    
    .logo-img {
      height: 80px;
      margin-bottom: 1.5rem;
      animation: bounce 2s infinite;
    }
    
    .cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 1rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s;
      animation: pulse 2s infinite;
    }
    
    .cta-button:hover {
      background-color: #2980b9;
      transform: scale(1.05);
    }
    
    /* ===== PRICE GUARANTEE SECTION ===== */
    .price-guarantee {
      padding: 5rem 2rem;
      background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                  url('https://media.giphy.com/media/3o7aD2d7hy9ktXNDP2/giphy.gif') no-repeat center center/cover;
      text-align: center;
      color: var(--footer-color);
    }
    
    .guarantee-container {
      max-width: 800px;
      margin: 0 auto;
      background-color: rgba(255,255,255,0.8);
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .price-guarantee h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .price-guarantee p {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }
    
    .highlight-text {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--accent-color);
      margin-top: 1.5rem;
      animation: rubberBand 2s infinite;
    }
    
    /* ===== WHATSAPP BUTTON ===== */
    .whatsapp-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
    }
    
    .whatsapp-float {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      transition: all 0.3s;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.1);
      background-color: #128C7E;
    }
    
    .tooltip-text {
      visibility: hidden;
      width: 120px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 5px;
      position: absolute;
      z-index: 1;
      bottom: 125%;
      left: 50%;
      margin-left: -60px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    
    .whatsapp-container:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
    }
    
    /* ===== FOOTER ===== */
    footer {
      background-color: var(--footer-color);
      color: var(--footer-text);
      padding: 3rem 0 0;
      position: relative;
    }
    
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }
    
    .footer-section {
      margin-bottom: 1.5rem;
    }
    
    .footer-heading {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .footer-heading::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background-color: var(--accent-color);
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .contact-icon {
      color: var(--accent-color);
    }
    
    .quick-links {
      list-style: none;
    }
    
    .quick-links li {
      margin-bottom: 0.8rem;
    }
    
    .quick-links a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .quick-links a:hover {
      color: var(--accent-color);
    }
    
    .social-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .social-links a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    
    .social-links a:hover {
      color: var(--accent-color);
    }
    
    .social-icon {
      width: 35px;
      height: 35px;
      background-color: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s;
    }
    
    .social-links a:hover .social-icon {
      background-color: var(--accent-color);
    }
    
    .copyright {
      text-align: center;
      padding: 1.5rem 0;
      background-color: rgba(0,0,0,0.2);
      margin-top: 2rem;
    }
    
    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 1200px) {
      .tag-nav-container ul {
        gap: 1rem;
      }
    }
    
    @media (max-width: 992px) {
      .about-content {
        grid-template-columns: 1fr;
      }
      
      .about-image {
        order: 2;
      }
      
      .about-text {
        order: 1;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .passionate-container h2,
      .price-guarantee h2 {
        font-size: 2.2rem;
      }
    }
    
    @media (max-width: 768px) {
      .main-nav {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        background-color: var(--footer-color);
        padding: 1rem 0;
        transition: left 0.3s;
      }
      
      .main-nav.active {
        left: 0;
      }
      
      .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .tag-nav {
        top: 165px;
      }
      
      .hero {
        margin-top: 165px;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1.2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .passionate-container h2,
      .price-guarantee h2 {
        font-size: 2rem;
      }
      
      .btn,
      .cta-button {
        padding: 0.8rem 1.5rem;
      }
      
      .expertise-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 576px) {
      .top-header {
        padding: 0.3rem 1rem;
        min-height: 90px;
      }
      
      .logo {
        height: 75px;
        width: 180px;
        min-width: 160px;
        padding: 8px 15px;
      }
      
      .company-name {
        font-size: 1.3rem;
      }
      
      .tag-nav {
        top: 140px;
        padding: 0.5rem 1rem;
      }
      
      .tag-nav-container ul {
        gap: 0.8rem;
        padding: 0.3rem 0;
      }
      
      .hero {
        margin-top: 140px;
      }
      
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .btn,
      .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
      }
      
      .services-container {
        grid-template-columns: 1fr;
      }
      
      .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
      }
      
      .footer-heading {
        font-size: 1.3rem;
      }
      
      .highlight-text {
        font-size: 1.3rem;
      }
    }
    
    @media (max-width: 480px) {
      .tag-nav-container ul {
        gap: 0.5rem;
      }
      
      .tag-nav-container a {
        font-size: 0.9rem;
      }
      
      .hero h1 {
        font-size: 1.6rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .passionate-container h2,
      .price-guarantee h2 {
        font-size: 1.8rem;
      }
      
      .logo-img {
        height: 60px;
      }
    }
    
    @media (max-width: 400px) {
      .tag-nav-container a {
        font-size: 0.8rem;
        gap: 0.3rem;
      }
      
      .tag-nav-container a i {
        display: none;
      }
      
      .hero h1 {
        font-size: 1.5rem;
      }
    }