 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        a{
            text-align: none;
        }
        /* Main Section Containers */
.main-section-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
}

/* Left and Right Containers */
.left-container, .right-container {
    width: 48%; /* Make containers take up equal space */
    padding: 20px;
    background-color: #d32f2f; /* Red background */
    color: white; /* Text color white */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-container .icon, .right-container .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white; /* Set icon color to white */
}

.left-container h2, .right-container h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: white; /* Set text color to white */
}

.left-container p, .right-container p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: white; /* Set text color to white */
}

.left-container a, .right-container a {
    color: white; /* Set link color to white */
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.left-container a:hover, .right-container a:hover {
    text-decoration: underline; /* Underline on hover */
}

.left-container a .arrow, .right-container a .arrow {
    margin-left: 5px;
    font-size: 1.3rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .main-section-container {
        flex-direction: column;
        gap: 20px;
    }

    .left-container, .right-container {
        width: 100%;
        padding: 15px;
    }
}


        body {
            background-color: #f4f4f4;
        }

        /* Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background: #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        .logo img {
            height: 50px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 1rem;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: 0.3s ease;
        }

        /* Active & Hover Effects */
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 100%;
            height: 2px;
            background: #d32f2f;
            transform: scaleX(0);
            transition: transform 0.3s ease-in-out;
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
        }

        .nav-links .active {
            color: #d32f2f;
            font-weight: bold;
        }

        .buttons {
            display: flex;
            gap: 10px;
        }

        .login-btn, .signup-btn {
            padding: 8px 15px;
            border-radius: 0px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s ease;
            border: 2px solid #d32f2f;
            text-decoration: none;
        }

        .login-btn {
            background: #d32f2f;
            color: white;
            border: none;
        }

        .signup-btn {
            background: white;
            color: #d32f2f;
        }

        .login-btn:hover {
            opacity: 0.8;
        }

        .signup-btn:hover {
            background: #d32f2f;
            color: white;
        }

        /* Banner Section */
        .banner {
            margin-top: 70px; /* Added to make space for fixed navbar */
            height: 300px;
            background: url('bg.jpg') no-repeat center center/cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            color: white;
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(211, 47, 47, 0.7), rgba(0, 0, 0, 0.7));
        }

        .banner-content {
            position: relative;
            z-index: 1;
        }

        .banner h1 {
            font-size: 2rem;
            color: #fff;
        }

        .banner p {
            font-size: 1.2rem;
            margin: 10px 0;
            color: #ffccbc;
        }

        .banner .cta-btn {
            padding: 10px 20px;
            background: white;
            color: #d32f2f;
            border: none;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 0px;
            cursor: pointer;
            transition: 0.3s ease;
        }

        .banner .cta-btn:hover {
            background: #d32f2f;
            color: white;
        }

        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background: #d32f2f;
            transition: 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 250px;
            height: 100vh;
            background: white;
            box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
            padding-top: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            transition: 0.3s ease;
            z-index: 2000;
        }

        .mobile-menu a {
            text-decoration: none;
            color: #333;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .mobile-menu .login-btn,
        .mobile-menu .signup-btn {
            width: 80%;
            text-align: center;
        }

        .mobile-menu.active {
            right: 0;
        }

        /* Close Button for Mobile Menu */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: #d32f2f;
            cursor: pointer;
        }

        /* Hamburger Animation */
        .hamburger.active div:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active div:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active div:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        @media (max-width: 768px) {
            .nav-links,
            .buttons {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .banner {
                margin-top: 70px; /* Adjusting for the fixed navbar */
                height: 250px;
            }

            .banner h1 {
                font-size: 1.8rem;
            }

            .banner p {
                font-size: 1rem;
            }
        }

       /* Main Section Styling */
.main-section {
    display: flex;
    justify-content: space-between;
    margin: 50px 10%; /* Leave space on left and right */
    padding: 20px;
    border-radius: 4px;
}

.container-left, .container-right {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 45%; /* Set width for containers */
    padding: 20px;
    background-color: #fff; /* White background for each container */
    border-radius: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.container-left {
    background-color: #b32124; /* Light pink background for left container */
}

.container-right {
    background-color: navy; /* Light green background for right container */
}
.container-left i {
    color: #fff;
}

.container-right i {
    color: #fff;
}

.icon {
    font-size: 2rem;
    color: #fff;
}

.content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
    text-align: left; /* Center align the heading */
    color: #fff;
}

.content p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    text-align: left; /* Center align the text */
}

.read-more {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.read-more i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #fff;
}

.read-more:hover {
    color: #fff;
}

.read-more:hover i {
    transform: translateX(5px); /* Adds a small animation to the arrow */
}

/* Categories Section */
    .services-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 60px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      box-sizing: border-box;
    }

    .box {
      background-color: #ffffff;
      border-left: 5px solid #cc0000;
      padding: 20px;
      flex: 1 1 calc(25% - 20px);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
      box-sizing: border-box;
    }

    .box:hover {
      transform: translateY(-5px);
    }

    .icon {
      font-size: 30px;
      color: #cc0000;
      margin-bottom: 15px;
    }

    .heading {
      font-size: 18px;
      font-weight: 600;
      color: #990000;
      margin-bottom: 10px;
    }

    .description {
      color: #333;
      font-size: 15px;
      margin-bottom: 15px;
    }

    .explore {
      text-decoration: none;
      color: #cc0000;
      font-weight: bold;
    }

    .explore:hover {
      text-decoration: underline;
    }

    @media (max-width: 1024px) {
      .box {
        flex: 1 1 calc(50% - 20px);
      }

      .services-container {
        padding: 30px 40px;
      }
    }

    @media (max-width: 600px) {
      .box {
        flex: 1 1 100%;
      }

      .services-container {
        padding: 20px;
      }
    }

/* Mobile Design */
@media (max-width: 768px) {
    .main-section {
        flex-direction: column; /* Stack containers vertically */
        margin: 20px; /* Reduce margin on smaller screens */
    }

    .container-left, .container-right {
        width: 100%; /* Make containers take full width */
        margin-bottom: 20px; /* Add space between containers */
        padding: 20px;
    }

    .icon {
        font-size: 1.8rem; /* Slightly smaller icons on mobile */
    }

    .content h3 {
        font-size: 1.3rem; /* Adjust heading size on mobile */
    }

    .content p {
        font-size: 0.9rem; /* Adjust text size on mobile */
    }

    .read-more {
        font-size: 1rem; /* Adjust link font size on mobile */
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-item, .explore-more-container {
        grid-column: span 1;
    }
}


/*explore jobs section css*/
/* Overall Section */
/* Explore Jobs Section */

  
  
  /* Heading */
  .explore-jobs h2 {
    font-size: 2.5rem;
    color: navy;
    margin-bottom: 10px;
  }
  
  /* Job Container */
      .jobs-container {
      max-width: 1400px;
      margin: 50px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      padding: 0 60px;
      box-sizing: border-box;
    }

    .job-card {
      background-color: #fff;
      border-left: 5px solid #cc0000;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      padding: 20px;
      width: calc(25% - 20px); /* 4 in a row */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s;
    }

    .job-card:hover {
      transform: translateY(-5px);
    }

    .top-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .job-image img {
      width: 50px;
      height: 50px;
      object-fit: contain;
    }

    .bookmark-icon i {
      font-size: 20px;
      color: #cc0000;
    }

    .company-date {
      margin-top: 10px;
    }

    .company-name {
      font-weight: 600;
      color: #333;
      margin: 5px 0;
    }

    .job-date {
      font-size: 13px;
      color: #777;
      margin: 0;
    }

    .job-title h3 {
      font-size: 18px;
      margin: 10px 0 5px;
      color: #990000;
    }

    .job-type {
      display: inline-block;
      background-color: #cc0000;
      color: #fff;
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 13px;
    }

    .separator {
      border: none;
      border-top: 1px solid #eee;
      margin: 15px 0;
    }

    .bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .location {
      font-size: 14px;
      color: #444;
    }

    .apply-btn {
      background-color: #cc0000;
      color: #fff;
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 14px;
    }

    .apply-btn:hover {
      background-color: #990000;
    }
    .more-jobs-wrapper {
  text-align: center;
  margin: 40px 0;
}

.more-jobs-btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #cc0000;
  border: 2px solid #cc0000;
  background-color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.more-jobs-btn:hover {
  background-color: #cc0000;
  color: #fff;
}


    @media (max-width: 1024px) {
      .job-card {
        width: calc(50% - 20px);
      }

      .jobs-container {
        padding: 0 40px;
      }
    }

    @media (max-width: 600px) {
      .job-card {
        width: 100%;
      }

      .jobs-container {
        padding: 0 20px;
      }
    }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .explore-jobs {
      padding: 50px 5%;
    }
    
  }
  /* end of explore jobs section */

  /* Blog Section */
.career-advice {
  text-align: center;
  margin: 50px 10%; /* Ensuring consistent margin */
}

/* Heading and Line */
.career-advice h2 {
  font-size: 2.5rem;
  color: navy;
  margin-bottom: 5px; /* Reduced space between heading and line */
}

.section-line {
  width: 50px;
  height: 2px;
  background-color: #e52d27;
  margin: 5px auto 20px auto; /* Adjusted spacing to be closer to heading */
}


.blog-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            max-width: 1200px;
            margin: auto;
        }

        .blog-card {
            background: #fff;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
            max-width: 300px;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-content h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
        }

        .blog-meta {
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
        }

        .blog-text {
            font-size: 15px;
            color: #555;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .line {
            height: 1px;
            background: #ddd;
            margin: 10px 0;
        }

        .blog-read-more {
            display: flex;
            align-items: center;
            color: navy;
            font-size: 15px;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s;
        }

        .blog-read-more i {
            margin-left: 5px;
        }

        .blog-read-more:hover {
            color: #0056b3;
        }

        @media (max-width: 768px) {
            .blog-container {
                flex-direction: column;
                align-items: center;
                width: 100%;
                padding:0px;
            }
            .blog-card {
           width: 100%;
        }
        }

/*footer css*/
footer {
            background: #222;
            color: white;
            padding: 20px 10%;
        }

        /* First Row: Logo & Social Icons */
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo-text {
            display: flex;
            align-items: center;
        }

        .footer-logo-text img {
            width: 150px;
            margin-right: 10px;
        }

        .footer-social a {
            color: white;
            font-size: 20px;
            margin: 0 8px;
            text-decoration: none;
        }

        .footer-social a:hover {
            color: #f44; /* Red hover effect */
        }

        /* Separator */
        hr {
            border: 0;
            height: 1px;
            background: #555;
            margin: 15px 0;
        }

        .footer-info{
            margin-bottom: 20px;
        }

        /* Second Row: Text & Subscription */
        .footer-middle {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .footer-subscribe input {
            padding: 8px;
            width: 200px;
            border: none;
            border-radius: 5px;
        }

        .footer-subscribe button {
            background: #f44;
            color: white;
            padding: 8px 12px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }

        .footer-subscribe button:hover {
            background: #d33;
        }

        /* Third Row: Links */
        .footer-links{
            margin-top: 40px;
            margin-bottom: 40px;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            text-align: center;
        }

        .footer-links li {
            display: inline;
            margin: 0 10px;
        }

        .footer-links a {
            text-decoration: none;
            color: white;
        }

        .footer-links a:hover {
            color: #f44;
        }

        /* Bottom Row: Copyright */
        .footer-bottom {
            background: #a00; /* Reddish color */
            text-align: center;
            padding: 10px;
            margin-top: 15px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer-top,
            .footer-middle {
                flex-direction: column;
                text-align: left;
            }

            .footer-social {
                margin-top: 10px;
            }

            .footer-subscribe input {
                width: 100%;
                margin-bottom: 10px;
            }

            /* Links as a column */
            .footer-links ul {
                display: flex;
                flex-direction: column;
                text-align: left;
            }

            .footer-links li {
                margin: 5px 0;
            }
        }
        /*end of footer css*/



        /*services css*/
            .service-banner {
      background: linear-gradient(rgba(179, 0, 0, 0.7), rgba(255, 77, 77, 0.4)), url('assets/images/about3.jpg') center/cover no-repeat;
      color: white;
      padding: 100px 30px;
      text-align: center;
    }

    .service-banner h1 {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .service-banner p {
      font-size: 18px;
    }

    .service-container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 80px;
    }

    .section {
      margin-bottom: 40px;
    }

    .section h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color: #222;
    }

    .why-choose {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .why-choose img {
      width: 100%;
      max-width: 500px;
      border-radius: 0px;
    }

    .why-text {
      flex: 1;
    }

    .why-text ul {
      list-style: none;
      padding: 0;
    }

    .why-text li {
      margin-bottom: 10px;
      font-size: 16px;
    }

    .why-text li i {
      color: #b32124;
      margin-right: 10px;
    }

    .services {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .service-box {
      background: white;
      flex: 1 1 250px;
      padding: 20px;
      border-radius: 0px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .service-box i {
      font-size: 24px;
      color: #b32124;
      margin-bottom: 10px;
    }

    .service-box h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .cta {
      background-color: #b32124;
      color: white;
      text-align: center;
      padding: 40px 20px;
      border-radius: 0px;
    }

    .cta h2 {
      margin-bottom: 20px;
      color: #fff;
    }

    .cta a {
      display: inline-block;
      background-color: white;
      color: #b32124;
      padding: 12px 25px;
      border-radius: 0px;
      text-decoration: none;
      font-weight: bold;
    }

    .cta a:hover {
      background-color: #e0e0e0;
    }

    @media (max-width: 768px) {
      .why-choose {
        flex-direction: column;
      }

      .services {
        flex-direction: column;
      }

      .service-container{
        padding: 10px;
      }
    }

    /*pages banner and breadcumbs css*/
            /* Banner Style */
        .pages-banner {
            background: linear-gradient(rgba(179, 0, 0, 0.7), rgba(255, 77, 77, 0.9)), url('assets/images/about3.jpg') center/cover no-repeat;
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-top: 80px;
        }
        .pages-banner h1 {
            font-size: 48px;
            margin: 0;
        }

        /* Breadcrumbs */
        .pages-breadcrumbs {
            display: flex;
            justify-content: center;
            background-color: #f1f1f1;
            padding: 10px;
        }
        .pages-breadcrumbs a {
            color: #b32124;
            text-decoration: none;
            font-size: 18px;
            margin: 0 10px;
        }
        .pages-breadcrumbs a:hover {
            text-decoration: underline;
        }


        /* About Us Section */
        .about-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px 160px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .about-text {
            flex: 1;
            padding: 20px;
            max-width: 600px;
        }

        .about-text h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }

        .about-image {
            flex: 1;
            max-width: 500px;
            padding: 20px;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Social Media Icons */
        .social-icons {
            display: flex;
            justify-content: center;
            margin-bottom: 25px;
        }
        .social-icons a {
            color: #b32124;
            font-size: 30px;
            margin: 0 15px;
            text-decoration: none;
        }
        .social-icons a:hover {
            color: #ff6600;
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .about-container {
                flex-direction: column;
                padding: 20px;
            }
            .about-text h2 {
                font-size: 28px;
            }
            .about-text p {
                font-size: 16px;
            }
            .about-image {
                margin-top: 20px;
            }
        }

                /* Contact Section css */
        .contact-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px 100px;
            display: flex;
            justify-content: space-between;
        }

        /* Left side (Contact Form) */
        .contact-form {
            flex: 1;
            padding: 20px;
            max-width: 600px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .contact-form h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 20px;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin: 8px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .contact-form button {
            background-color: #b32124;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 18px;
        }

        .contact-form button:hover {
            background-color: #ff6600;
        }

        /* Right side (Company Info) */
        .company-info {
            flex: 1;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-left: 20px;
        }

        .company-info h3 {
            font-size: 30px;
            color: #333;
            margin-bottom: 15px;
        }

        .company-info p {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
        }

        /* Meet the Developer Section */
        .meet-developer {
            margin-top: 40px;
            text-align: center;
        }

        .developer-button {
            background-color: #b32124;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 18px;
        }

        .developer-button:hover {
            background-color: #ff6600;
        }

        /* Popup Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
            padding-top: 60px;
        }

        .modal-content {
            background-color: #ffffff;
            margin: 5% auto;
            padding: 20px;
            border-radius: 8px;
            width: 80%;
            max-width: 600px;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                padding: 20px;
            }
            .contact-form h2 {
                font-size: 28px;
            }
            .contact-form input, .contact-form textarea {
                font-size: 16px;
            }
            .company-info {
                margin-left: 0;
                margin-top: 20px;
            }
        }
        
            .section-heading {
      color: navy;
      font-size: 2.5rem;
      font-weight: bold;
      text-align: center;
      padding: 20px 10px;
    }

    @media (max-width: 768px) {
      .section-heading {
        font-size: 2rem;
      }
    }

    @media (max-width: 480px) {
      .section-heading {
        font-size: 1.5rem;
      }
    }

    }
    
    