  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
   :root {
      /* MATCHING INDEX PAGE COLORS */
      --primary-blue: #1e3c72;
      --secondary-blue: #2a5298;
      --accent-blue: #348FB3;
      --primary-orange: #FF8C00;
      --secondary-orange: #FFB347;
      --light-orange: rgba(255, 140, 0, 0.2);
      --dark-bg: #0F2027;
      --dark-secondary: #203A43;
      --light-bg: #f8f9fa;
      --text-dark: #1a365d;
      --text-light: #666;
      --white: #ffffff;
      /* Updated gradient variables to match index */
      --gs-gradient: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
      --blue-gradient: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue), var(--accent-blue));
      --dark-gradient: linear-gradient(135deg, var(--dark-bg), var(--dark-secondary));
      --gs-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      --gs-box-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.2);
  }
  
  .gs-container {
      width: 100%;
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 40px;
  }
  
  .gs-section {
      padding: 20px 0;
      position: relative;
      overflow: hidden;
  }
  
  .logo-text {
      color: var(--white);
      font-weight: 600;
      font-size: 18px;
      letter-spacing: 0.5px;
  }
  
  .gs-cta-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gs-gradient);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: var(--gs-box-shadow);
      border: 2px solid transparent;
      cursor: pointer;
      position: relative;
      overflow: hidden;
  }
  
  .gs-cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(255, 140, 0, 0.3);
      background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange));
  }
  /* HERO SECTION - Matching Index Style */
  
  .gs-hero {
      position: relative;
      height: 85vh;
      min-height: 600px;
      max-height: 800px;
      overflow: hidden;
      display: flex;
      align-items: center;
      color: var(--white);
      padding: 0;
      margin-top: 0;
  }
  
  .gs-hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: gsZoomOut 30s ease-in-out infinite alternate;
      z-index: 1;
  }
  /* Gradient Overlay */
  
  .gs-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient( 135deg, rgba(15, 32, 39, 0.85) 0%, rgba(32, 58, 67, 0.75) 100%);
      z-index: 2;
  }
  
  .gs-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(135deg, rgba(15, 32, 39, 0.85) 0%, rgba(32, 58, 67, 0.75) 100%);
      background-size: cover;
      background-position: center;
      animation: gsZoomOut 30s ease-in-out infinite alternate;
      z-index: 1;
  }
  
  .gs-hero-content {
      position: relative;
      z-index: 2;
      padding: 0;
      width: 100%;
      text-align: left;
      animation: heroContentReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  }
  
  .gs-hero h1 {
      font-size: 48px;
      color: var(--white);
      margin-bottom: 20px;
      opacity: 1;
      transform: none;
      animation: none;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      font-weight: 700;
  }
  
  .gs-hero-subtitle {
      font-size: 18px;
      color: var(--white);
      margin-bottom: 30px;
      line-height: 1.6;
      opacity: 0.9;
      max-width: 600px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      transform: none;
      animation: none;
  }
  
  .gs-hero-buttons {
      display: flex;
      gap: 15px;
      margin-bottom: 40px;
      flex-wrap: wrap;
      transform: none;
      animation: none;
  }
  
  .gs-hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
      cursor: pointer;
      font-size: 15px;
      min-width: 220px;
  }
  
  .gs-btn-primary {
      background: var(--gs-gradient);
      color: var(--white);
      box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
  }
  
  .gs-btn-primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(255, 140, 0, 0.4);
      background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange));
  }
  
  .gs-btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
  }
  
  .gs-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: var(--primary-orange);
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  @keyframes gsZoomOut {
      0% {
          transform: scale(1.1);
      }
      100% {
          transform: scale(1);
      }
  }
  
  @keyframes heroContentReveal {
      0% {
          opacity: 0;
          transform: translateY(50px) scale(0.95);
      }
      100% {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }
  /* Products Grid - Matching Index */
  
  .gs-products-section {
      background: var(--light-bg);
  }
  
  .gs-section-title {
      text-align: center;
      margin-bottom: 60px;
      opacity: 1;
      transform: none;
  }
  
  .gs-section-title.visible {
      opacity: 1;
      transform: none;
  }
  
  .gs-section-title h2 {
      font-size: 42px;
      color: var(--text-dark);
      margin-bottom: 20px;
  }
  
  .gs-section-title p {
      font-size: 20px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
  }
  
  .highlight {
      background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange), var(--primary-orange));
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientText 3s linear infinite;
  }
  
  @keyframes gradientText {
      0% {
          background-position: 0% 50%;
      }
      50% {
          background-position: 100% 50%;
      }
      100% {
          background-position: 0% 50%;
      }
  }
  
  .gs-products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
  }
  
  .gs-product-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--gs-box-shadow);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      transform: translateY(30px);
      position: relative;
      border: none;
  }
  
  .gs-product-card.visible {
      opacity: 1;
      transform: translateY(0);
  }
  
  .gs-product-card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: var(--gs-box-shadow-hover);
      border-color: transparent;
  }
  
  .gs-product-card::before {
      display: none;
  }
  
  .gs-product-image {
      height: 250px;
      position: relative;
      overflow: hidden;
  }
  
  .gs-product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .gs-product-card:hover .gs-product-image img {
      transform: scale(1.1);
  }
  
  .gs-product-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--gs-gradient);
      color: var(--white);
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 1px;
      box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
  }
  
  .gs-product-content {
      padding: 30px;
  }
  
  .gs-product-content h3 {
      font-size: 22px;
      color: var(--text-dark);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
  }
  
  .gs-product-content h3 i {
      color: var(--primary-orange);
  }
  
  .gs-product-description {
      color: var(--text-light);
      margin-bottom: 25px;
      line-height: 1.6;
      font-size: 15px;
  }
  
  .gs-product-features {
      list-style: none;
      padding: 0;
      margin: 0 0 30px 0;
  }
  
  .gs-product-features li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-light);
      font-size: 14px;
  }
  
  .gs-product-features i {
      color: var(--primary-orange);
      font-size: 14px;
  }
  /* Services Section - Matching Index */
  
  .gs-services-section {
      background: var(--blue-gradient);
      position: relative;
      overflow: hidden;
  }
  
  .gs-services-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--blue-gradient);
      opacity: 0.05;
      z-index: 1;
  }
  
  .gs-services-content {
      position: relative;
      z-index: 2;
  }
  
  .gs-services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 40px;
  }
  
  .gs-service-card {
      background: var(--white);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: var(--gs-box-shadow);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      transform: translateY(30px);
      position: relative;
      overflow: hidden;
      border: none;
  }
  
  .gs-service-card.visible {
      opacity: 1;
      transform: translateY(0);
  }
  
  .gs-service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--gs-box-shadow-hover);
      border-color: transparent;
  }
  
  .gs-service-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: var(--gs-gradient);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--white);
      transition: all 0.3s ease;
      box-shadow: 0 15px 30px rgba(255, 140, 0, 0.3);
  }
  
  .gs-service-card:hover .gs-service-icon {
      transform: scale(1.1) rotate(5deg);
  }
  
  .gs-service-card h3 {
      color: var(--text-dark);
      margin-bottom: 15px;
      font-weight: 600;
  }
  
  .gs-service-card p {
      color: var(--text-light);
      margin-bottom: 20px;
      line-height: 1.6;
      font-size: 20px;
  }
  /* Why Choose Us - Matching Index Timeline Style */
  
  .gs-why-section {
      background: var(--light-bg);
  }
  
  .gs-timeline {
      position: relative;
      max-width: 1200px;
      margin: 4rem auto 0;
  }
  
  .gs-timeline::before {
      display: none;
  }
  
  .gs-timeline-item {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
      background: var(--white);
      padding: 40px;
      border-radius: 20px;
      box-shadow: var(--gs-box-shadow);
  }
  
  .gs-timeline-item.visible {
      opacity: 1;
      transform: translateY(0);
  }
  
  .gs-timeline-item:nth-child(even) {
      flex-direction: row;
  }
  
  .gs-timeline-content {
      width: 100%;
      padding: 0;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
      position: relative;
      border: none;
  }
  
  .gs-timeline-item:nth-child(odd) .gs-timeline-content {
      margin-left: 0;
  }
  
  .gs-timeline-item:nth-child(even) .gs-timeline-content {
      margin-right: 0;
  }
  
  .gs-timeline-content::before {
      display: none;
  }
  
  .gs-timeline-content h3 {
      color: var(--text-dark);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
  }
  
  .gs-timeline-content h3 i {
      color: var(--primary-orange);
  }
  
  .gs-timeline-content p {
      color: var(--text-light);
      line-height: 1.6;
      font-size: 20px;
  }
  /* CTA SECTION - Matching Index */
  
  .gs-cta-section {
      background: var(--dark-gradient);
      position: relative;
      padding: 100px 0;
      text-align: center;
      border-top: none;
      border-bottom: none;
      color: var(--white);
      overflow: hidden;
  }
  
  .gs-cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
      z-index: 1;
  }
  
  .gs-cta-content {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
  }
  
  .gs-cta-content.visible {
      opacity: 1;
      transform: translateY(0);
  }
  
  .gs-cta-content h2 {
      font-size: 48px;
      margin-bottom: 20px;
      color: var(--white);
  }
  
  .gs-cta-content p {
      font-size: 20px;
      margin-bottom: 50px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
  }
  
  .gs-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
  }
  
  .gs-cta-button.light {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .gs-cta-button.light:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--primary-orange);
      transform: translateY(-5px);
  }
  /* Footer - Matching Index */
  
  .gs-footer {
      background: #1a365d;
      color: var(--white);
      padding: 80px 0 30px;
      position: relative;
  }
  
  .gs-footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 50px;
      margin-bottom: 70px;
  }
  
  .gs-footer-column h3 {
      color: #FFB347;
      font-size: 20px;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
      font-weight: 600;
  }
  
  .gs-footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--gs-gradient);
  }
  
  .gs-footer-logo-img {
      height: 50px;
      width: auto;
      margin-bottom: 20px;
      object-fit: contain;
  }
  
  .gs-footer-links {
      list-style: none;
  }
  
  .gs-footer-links li {
      margin-bottom: 15px;
  }
  
  .gs-footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s;
  }
  
  .gs-footer-links a:hover {
      color: var(--primary-orange);
      padding-left: 10px;
  }
  
  .gs-contact-info {
      list-style: none;
  }
  
  .gs-contact-info li {
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      color: rgba(255, 255, 255, 0.8);
  }
  
  .gs-contact-info i {
      color: #FFB347;
      margin-top: 5px;
      font-size: 1.1rem;
  }
  
  .gs-social-links {
      display: flex;
      gap: 15px;
      margin-top: 25px;
  }
  
  .gs-social-links a {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
  }
  
  .gs-social-links a:hover {
      background: var(--gs-gradient);
      color: var(--white);
      transform: translateY(-5px);
  }
  
  .gs-copyright {
      text-align: center;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
  }
  /* Button Ripple Effect - Matching Index */
  
  .gs-cta-button::before {
      display: none;
      /* Remove old effect */
  }
  /* Add ripple effect like index page */
  
  .gs-cta-button,
  .gs-hero-btn {
      position: relative;
      overflow: hidden;
  }
  
  .gs-cta-button:focus:not(:active)::after,
  .gs-hero-btn:focus:not(:active)::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.5);
      opacity: 0;
      border-radius: 100%;
      transform: scale(0, 0) translate(-50%);
      transform-origin: 50% 50%;
      animation: ripple 1s ease-out;
  }
  
  @keyframes ripple {
      0% {
          transform: scale(0, 0);
          opacity: 0.5;
      }
      100% {
          transform: scale(30, 30);
          opacity: 0;
      }
  }
  /* Enhanced focus states */
  
  *:focus {
      outline: 2px solid var(--primary-orange);
      outline-offset: 4px;
  }
  /* Enhanced scrollbar */
  
   ::-webkit-scrollbar {
      width: 10px;
  }
  
   ::-webkit-scrollbar-track {
      background: #f1f1f1;
  }
  
   ::-webkit-scrollbar-thumb {
      background: var(--gs-gradient);
      border-radius: 5px;
  }
  
   ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(to bottom, var(--primary-orange), var(--primary-orange));
  }
  /* Responsive Design - Matching Index */
  
  @media (max-width: 1200px) {
      .gs-container {
          padding: 0 30px;
      }
      .gs-hero h1 {
          font-size: 38px;
      }
      .gs-section-title h2 {
          font-size: 36px;
      }
      .gs-products-grid {
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
      }
  }
  
  @media (max-width: 992px) {
      .gs-mobile-toggle {
          display: block;
      }
      .gs-nav-links {
          position: fixed;
          top: 0;
          right: -100%;
          flex-direction: column;
          background: rgba(15, 32, 39, 0.98);
          backdrop-filter: blur(10px);
          width: 80%;
          max-width: 300px;
          height: 100vh;
          padding: 100px 2rem 2rem;
          box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
          transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          z-index: 999;
          border-left: 1px solid rgba(255, 140, 0, 0.2);
      }
      .gs-nav-links.active {
          right: 0;
      }
      .gs-hero h1 {
          font-size: 32px;
      }
      .gs-hero-subtitle {
          font-size: 16px;
      }
      .gs-section-title h2 {
          font-size: 30px;
      }
      .gs-cta-content h2 {
          font-size: 36px;
      }
      .gs-footer-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 40px;
      }
      .gs-hero-buttons {
          flex-direction: column;
          align-items: flex-start;
          gap: 15px;
      }
      .gs-hero-btn {
          width: 100%;
          max-width: 300px;
      }
      .gs-cta-buttons {
          flex-direction: column;
          align-items: center;
          gap: 15px;
      }
  }
  
  @media (max-width: 768px) {
      .gs-container {
          padding: 0 20px;
      }
      .gs-hero {
          height: 70vh;
          min-height: 500px;
          max-height: 600px;
      }
      .gs-hero h1 {
          font-size: 28px;
      }
      .gs-hero-subtitle {
          font-size: 15px;
      }
      .gs-products-grid {
          grid-template-columns: 1fr;
          gap: 30px;
      }
      .gs-section {
          padding: 20px 0;
      }
      .gs-section-title h2 {
          font-size: 26px;
      }
      .gs-section-title p {
          font-size: 16px;
      }
      .gs-cta-content h2 {
          font-size: 30px;
      }
      .gs-cta-content p {
          font-size: 16px;
      }
      .gs-logo-img {
          height: 40px;
      }
      .gs-footer-grid {
          grid-template-columns: 1fr;
          gap: 40px;
      }
      .gs-service-card,
      .gs-timeline-item {
          padding: 30px 20px;
      }
  }
  
  @media (max-width: 480px) {
      .gs-hero h1 {
          font-size: 24px;
      }
      .gs-hero-subtitle {
          font-size: 14px;
      }
      .gs-section-title h2 {
          font-size: 22px;
      }
      .gs-cta-content h2 {
          font-size: 26px;
      }
      .gs-container {
          padding: 0 15px;
      }
      .gs-hero-btn,
      .gs-cta-button {
          width: 100%;
          padding: 12px 20px;
          font-size: 14px;
      }
      .gs-product-image {
          height: 200px;
      }
      .gs-service-icon {
          width: 70px;
          height: 70px;
          font-size: 24px;
      }
  }