    :root {
      --primary-color: rgb(255, 23, 23);
      --primary-hover: #e01515;
      --text-color: #222;
      --light-bg: #f8f9fa;
      --border-color: #e9ecef;
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
    }

    .navbar {
      background: #ffffff;
      border-bottom: 1px solid var(--border-color);
      padding: 0.5rem 0;
      transition: all 0.3s ease;
      box-shadow: var(--shadow);
    }

    .navbar.scrolled {
      padding: 0.3rem 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--text-color);
    }

    .navbar-brand img {
      width: 150px;
      height: 70px;
      transform: scale(2.11);
      object-fit: contain;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
      transform: scale(2.16);
    }

    .nav-link {
      font-weight: 500;
      font-size: 14.8px;
      color: var(--text-color);
      position: relative;
      padding: 0.5rem 1rem !important;
      transition: color 0.3s ease;
    }

    .nav-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background-color: var(--primary-color);
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary-color);
    }

    .nav-link:hover:after {
      width: 80%;
      left: 10%;
    }

    /* Active state styling - only one item at a time */
    .nav-link.active {
      color: var(--primary-color);
      font-weight: 600;
    }

    .nav-link.active:after {
      width: 80%;
      left: 10%;
    }

    .btn-custom-outline {
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      border-radius: 50px;
      padding: 9px 22px;
      font-weight: 600;
      font-size: 13.5px;
      align-content: center;
      transition: all 0.3s ease;
      background: transparent;
    }

    .btn-custom-outline:hover {
      background: var(--primary-color);
      color: #fff;
      box-shadow: 0 4px 8px rgba(255, 23, 23, 0.3);
    }

    .btn-custom-fill {
      background: var(--primary-color);
      color: #fff;
      border-radius: 50px;
      padding: 9px 22px;
      font-weight: 600;
      font-size: 13.5px;
      align-content: center;
      border: 2px solid var(--primary-color);
      transition: all 0.3s ease;
    }

    .btn-custom-fill:hover {
      background: var(--primary-hover);
      border-color: var(--primary-hover);
      color: #fff;
      box-shadow: 0 4px 8px rgba(255, 23, 23, 0.3);
    }

    .navbar-toggler {
      border: none;
      padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2834, 34, 34, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Demo content */
    .demo-content {
      padding: 100px 20px;
      text-align: center;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      border-radius: 20px;
      margin: 40px auto;
      max-width: 800px;
      box-shadow: var(--shadow);
    }

    .demo-content h1 {
      font-weight: 700;
      color: var(--text-color);
      margin-bottom: 20px;
    }

    .demo-content p {
      font-size: 1.1rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Mobile responsive adjustments */
    @media (max-width: 991px) {
      .navbar-collapse {
        text-align: start;
        padding: 1rem 0;
      }

      .nav-link {
        padding: 0.75rem 1rem !important;
      }

      /* Remove active underline completely in mobile */
      .nav-link.active:after {
        display: none !important;
      }

      /* Remove hover underline in mobile */
      .nav-link:hover:after {
        display: none !important;
      }

      .btn-custom-outline,
      .btn-custom-fill {
        width: 100%;
        margin: 5px 0;
      }

      /* Mobile Logo Fix */
      .navbar-brand img {
        width: auto !important;
        height: 65px !important;
        transform: scale(1.8) !important;
        margin: 35px;
        max-width: 150px;
      }

      .navbar-brand:hover img {
        transform: scale(1.85) !important;
      }
    }

    /* Smaller Mobile Logo */
    @media (max-width: 576px) {
      .navbar-brand img {
        width: auto !important;
        height: 60px !important;
        transform: scale(1.7) !important;
        margin: 35px;
        max-width: 150px;
      }

      .navbar-brand:hover img {
        transform: scale(1.75) !important;
      }
    }

    /* Hero Section Styles */
    .hero-section {
      background: linear-gradient(135deg, #ff1717 0%, #ff9fa5 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 100px 0;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
      background-size: cover;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: white;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .hero-subtitle {
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 2rem;
      opacity: 0.9;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-hero {
      background: #ff1717;
      color: white;
      border: none;
      border-radius: 50px;
      padding: 12px 35px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-hero:hover {
      background: #ff1919;
      transform: translateY(-1px);
      box-shadow: 0 8px 25px rgba(255, 23, 23, 0.3);
      color: white;
    }

    .hero-image {
      position: relative;
      z-index: 2;

    }

    .hero-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    /* Floating shapes animation */
    .floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .shape {
      position: absolute;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .shape-1 {
      width: 80px;
      height: 80px;
      top: 20%;
      right: 10%;
      animation: float 6s ease-in-out infinite;
    }

    .shape-2 {
      width: 120px;
      height: 120px;
      bottom: 20%;
      right: 20%;
      animation: float 8s ease-in-out infinite;
    }

    .shape-3 {
      width: 60px;
      height: 60px;
      top: 60%;
      left: 10%;
      animation: float 7s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-20px) rotate(10deg);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }

      .hero-subtitle {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 2rem;
      }

      .hero-subtitle {
        font-size: 1.1rem;
      }
    }



    .services-section {
      background: #ffffff;
      padding: 80px 0;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #222;
      margin-bottom: 3rem;
      text-align: center;
    }

    .service-box {
      background: #f3eaea;
      padding: 40px 30px;
      text-align: start;
      border-radius: 16px;
      transition: all 0.3s ease;
      height: 100%;
      border: 1px solid #f8f9fa;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .service-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: #ff1717;
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(255, 23, 23, 0.15);
    }

    .service-box:hover::before {
      transform: scaleY(1);
    }

    .service-box h4 {
      font-size: 1.4rem;
      font-weight: 600;
      color: #222;
      margin-bottom: 15px;
    }

    .service-box p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 0;
      font-size: 0.95rem;
    }

    .service-icon {
      background: rgba(255, 23, 23, 0.1);
      padding: 12px;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      border: 2px solid #ff1717;
    }

    .service-icon img {
      width: 24px;
      height: 24px;
      filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(5000%) hue-rotate(350deg) brightness(90%) contrast(100%);
    }

    .carousel-item {
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .carousel-indicators {
      bottom: -60px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }

      .service-box {
        padding: 30px 20px;
        margin-bottom: 20px;
      }

      .service-box h4 {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 576px) {
      .services-section {
        padding: 60px 0;
      }

      .section-title {
        font-size: 1.8rem;
      }
    }

    .domains-container {
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    /* Background Animation */
    .domains-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(circle at 20% 80%, rgba(255, 23, 23, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 23, 23, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 23, 23, 0.03) 0%, transparent 50%);
      animation: backgroundShift 8s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes backgroundShift {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.02);
        opacity: 0.8;
      }
    }

    .floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
      pointer-events: none;
    }

    .shape {
      position: absolute;
      background: rgba(255, 23, 23, 0.05);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .shape-1 {
      width: 100px;
      height: 100px;
      top: 10%;
      left: 10%;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 150px;
      height: 150px;
      bottom: 20%;
      right: 10%;
      animation-delay: 2s;
    }

    .shape-3 {
      width: 80px;
      height: 80px;
      top: 60%;
      left: 80%;
      animation-delay: 4s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px) rotate(0deg);
      }

      50% {
        transform: translateY(-20px) rotate(180deg);
      }
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #222;
      margin-bottom: 3rem;
      text-align: center;
      line-height: 1.3;
      position: relative;
      z-index: 1;
    }

    .domain-card {
      border: 2px solid #e9ecef;
      border-radius: 16px;
      padding: 30px 25px;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .domain-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 23, 23, 0.1), transparent);
      transition: left 0.6s ease;
      z-index: -1;
    }

    .domain-card:hover {
      border-color: #ff1717;
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 35px rgba(255, 23, 23, 0.15);
    }

    .domain-card:hover::before {
      left: 100%;
    }

    .domain-icon {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      background: rgba(255, 23, 23, 0.1);
      border-radius: 50%;
      padding: 12px;
      border: 2px solid #ff1717;
      transition: all 0.3s ease;
    }

    .domain-card:hover .domain-icon {
      transform: scale(1.1) rotate(5deg);
      background: rgba(255, 23, 23, 0.2);
    }

    .domain-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(5000%) hue-rotate(350deg) brightness(90%) contrast(100%);
    }

    .domain-content h4,
    .domain-content h5 {
      font-weight: 600;
      color: #222;
      margin-bottom: 12px;
      font-size: 1.3rem;
      transition: color 0.3s ease;
    }

    .domain-card:hover .domain-content h4,
    .domain-card:hover .domain-content h5 {
      color: #ff1717;
    }

    .domain-content p {
      color: #666;
      line-height: 1.6;
      margin: 0;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

    .domain-card:hover .domain-content p {
      color: #555;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }

      .domain-card {
        padding: 25px 20px;
        margin-bottom: 20px;
      }

      .domain-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
      }
    }

    @media (max-width: 576px) {
      .domains-container {
        padding: 60px 15px;
      }

      .section-title {
        font-size: 1.8rem;
      }
    }

    .about {
      padding: 5rem 1rem;
      color: #111827;
    }

    .about-container {
      max-width: 1280px;
      margin: auto;
      display: flex;
      align-items: center;
      gap: 4rem;
    }

    .about-image {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .about-image img {
      width: 100%;
      max-width: 420px;

      border-radius: 16px;
    }

    .about-content {
      flex: 1;
    }

    .about-content h2 {
      font-size: 3rem;
      font-weight: 800;
    }

    .about-content p {
      margin: 2rem 0;
      font-size: 1.125rem;
      line-height: 2.25rem;
      color: #4b5563;
    }

    .about-btn {
      font-size: 1.25rem;
      font-weight: 600;
      color: #2563eb;
      text-decoration: none;
    }

    /* Deliver Results Section */
    .deliver-results {
      padding: 80px 20px;
      background-color: #ffffff;
    }

    .deliver-results-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .deliver-results-image {
      margin-top: 3rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .deliver-results-image img {
      width: 100%;
      max-width: 1000px;
      height: auto;
      border-radius: 16px;
    }

    @media (max-width: 768px) {
      .deliver-results {
        padding: 60px 15px;
      }

      .deliver-results-image img {
        border-radius: 12px;
      }
    }

    .technologies {
      padding: 80px 0;
      background-color: #ffffff;
      color: #111827;
      overflow: hidden;
    }

    .technologies-container {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0;
    }

    .technologies-content {
      flex: 1;
      padding-left: 5%;
      padding-right: 3rem;
    }

    .technologies-container img {
      flex-shrink: 0;
      width: 45%;
      max-width: 550px;
      height: auto;
      border-radius: 16px 0 0 16px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .technologies {
        padding: 60px 20px;
      }

      .technologies-container {
        flex-direction: column;
        gap: 2rem;
      }

      .technologies-container img {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
      }

      .technologies-content {
        padding-left: 0;
        padding-right: 0;
      }
    }

    .technologies-content h2 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .technologies-content p {
      font-size: 18px;
      line-height: 2rem;
      color: #4b5563;
      max-width: 900px;
    }

    /* General container */
    .contact-us {
      background-color: #f0f6fa;
      /* very light blue */
      color: #111;
      font-family: 'Segoe UI', sans-serif;
      padding: 60px 20px;
    }

    .contact-us-container {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-us h2 {
      font-size: 36px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .contact-us p {
      font-size: 16px;
      margin-bottom: 40px;
      line-height: 1.6;
      color: #333;
    }

    /* Form styling */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 15px 20px;
      font-size: 16px;
      border: 2px solid #ccc;
      border-radius: 50px;
      /* rounded corners */
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
      width: 100%;
      box-sizing: border-box;
      background-color: #f0f6fa;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #ff1717;
      box-shadow: 0 0 5px rgba(255, 23, 23, 0.5);
    }

    .contact-form button {
      padding: 15px 0;
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      background-color: #ff1717;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.2s;
    }

    .contact-form button:hover {
      background-color: #e01212;
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-us-container {
        padding: 0 15px;
      }
    }

    /* Footer styling */
    .site-footer {
      background-color: #ffffff;
      color: #333;
      font-family: 'Poppins', sans-serif;
      padding: 50px 20px 30px;
      border-top: 1px solid #eee;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-top {
      display: flex;
      flex-direction: column;
      gap: 25px;
      align-items: center;
    }

    .footer-brand-img {
      height: 50px;
      width: auto;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 30px;
    }

    .footer-links a {
      color: #555;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #ff1717;
    }

    .footer-socials {
      display: flex;
      gap: 15px;
    }

    .footer-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #f5f5f5;
      color: #555;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-socials a:hover {
      background-color: #ff1717;
      color: #fff;
      transform: translateY(-3px);
    }

    .footer-bottom {
      margin-top: 35px;
      padding-top: 25px;
      border-top: 1px solid #eee;
    }

    .footer-bottom p {
      font-size: 14px;
      color: #888;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-links {
        flex-direction: column;
        gap: 15px;
      }

      .footer-socials a {
        width: 36px;
        height: 36px;
        font-size: 14px;
      }

      .footer-contact {
        flex-direction: column;
        gap: 15px;
      }
    }

    /* Footer Contact Info */
    .footer-contact {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
      padding-top: 25px;
      border-top: 1px solid #eee;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #555;
      font-size: 14px;
    }

    .footer-contact-item i {
      color: #ff1717;
      font-size: 16px;
    }

    .footer-contact-item span {
      color: #666;
    }

    .footer-contact-item a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-contact-item a:hover {
      color: #ff1717;
    }

    /* ==========================================
       COMPREHENSIVE RESPONSIVE STYLES
       ========================================== */

    /* Large Tablets and Small Desktops (992px - 1199px) */
    @media (max-width: 1199px) {
      .hero-title {
        font-size: 3rem;
      }

      .about-container {
        gap: 3rem;
      }

      .technologies-container {
        gap: 2rem;
      }
    }

    /* Tablets (768px - 991px) */
    @media (max-width: 991px) {
      .hero-section {
        padding: 60px 0;
        min-height: auto;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .hero-subtitle {
        font-size: 1.2rem;
      }

      .hero-image {
        margin-top: 40px;
      }

      .about-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
      }

      .about-content h2 {
        font-size: 2.5rem;
      }

      .about-image img {
        max-width: 350px;
      }

      .technologies-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
      }

      .technologies-container img {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        margin-top: 30px;
      }

      .technologies-content {
        padding: 0;
      }

      .deliver-results-image img {
        max-width: 100%;
      }
    }

    /* Mobile Phones (576px - 767px) */
    @media (max-width: 767px) {
      .hero-section {
        padding: 50px 0;
      }

      .hero-title {
        font-size: 2rem;
      }

      .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
      }

      .section-title {
        font-size: 1.75rem;
      }

      .services-section {
        padding: 50px 0;
      }

      .service-box {
        padding: 25px 20px;
      }

      .domains-container {
        padding: 50px 15px;
      }

      .domain-card {
        padding: 20px 15px;
      }

      .about-container {
        padding: 0 15px;
      }

      .about-content h2 {
        font-size: 2rem;
      }

      .about-content p {
        font-size: 1rem;
        line-height: 1.8rem;
      }

      .technologies-content h2 {
        font-size: 2rem;
      }

      .technologies-content p {
        font-size: 1rem;
      }

      .contact-us-container {
        padding: 0 10px;
      }

      .contact-us h2 {
        font-size: 1.75rem;
      }

      .footer-top {
        gap: 20px;
      }

      .footer-contact {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-contact-item {
        flex-direction: column;
        gap: 5px;
      }
    }

    /* Small Mobile Phones (max-width: 480px) */
    @media (max-width: 480px) {
      .hero-title {
        font-size: 1.75rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .btn-hero {
        padding: 10px 25px;
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.5rem;
      }

      .service-box h4 {
        font-size: 1.1rem;
      }

      .service-box p {
        font-size: 0.9rem;
      }

      .domain-icon {
        width: 45px;
        height: 45px;
      }

      .domain-content h4,
      .domain-content h5 {
        font-size: 1.1rem;
      }

      .about-content h2 {
        font-size: 1.75rem;
      }

      .about-btn {
        font-size: 1rem;
      }

      .contact-form input,
      .contact-form textarea {
        padding: 12px 15px;
        font-size: 14px;
      }

      .contact-form button {
        padding: 12px 0;
        font-size: 16px;
      }

      .footer-brand-img {
        height: 40px;
      }

      .footer-links a {
        font-size: 14px;
      }

      .footer-bottom p {
        font-size: 12px;
      }
    }

    /* Landscape Mode for Mobile */
    @media (max-width: 767px) and (orientation: landscape) {
      .hero-section {
        min-height: auto;
        padding: 40px 0;
      }

      .hero-image {
        display: none;
      }
    }

    /* High DPI / Retina displays */
    @media (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi) {

      .hero-image img,
      .about-image img,
      .technologies-container img {
        image-rendering: -webkit-optimize-contrast;
      }
    }