   :root {
       --bg: #f4f4f4;
       --primary: #3C8427;
       --main-tc: #151515;
       --tc-2: #585858;
       --text-size: 28px;
   }

   @font-face {
       font-family: 'Spartan';
       src: url('../fonts/Spartan-Regular.ttf') format('truetype');
       font-weight: 400;
       font-style: normal;
   }

   @font-face {
       font-family: 'Spartan';
       src: url('../fonts/Spartan-Medium.ttf') format('truetype');
       font-weight: 500;
       font-style: normal;
   }

   @font-face {
       font-family: 'Spartan';
       src: url('../fonts/Spartan-SemiBold.ttf') format('truetype');
       font-weight: 600;
       font-style: normal;
   }

   @font-face {
       font-family: 'Spartan';
       src: url('../fonts/Spartan-Bold.ttf') format('truetype');
       font-weight: 700;
       font-style: normal;
   }

   /* ================= Afacad ================= */
   @font-face {
       font-family: 'Afacad';
       src: url('../fonts/Afacad-Regular.ttf') format('truetype');
       font-weight: 400;
       font-style: normal;
   }

   @font-face {
       font-family: 'Afacad';
       src: url('../fonts/Afacad-Medium.ttf') format('truetype');
       font-weight: 500;
       font-style: normal;
   }

   @font-face {
       font-family: 'Afacad';
       src: url('../fonts/Afacad-SemiBold.ttf') format('truetype');
       font-weight: 600;
       font-style: normal;
   }

   @font-face {
       font-family: 'Afacad';
       src: url('../fonts/Afacad-Bold.ttf') format('truetype');
       font-weight: 700;
       font-style: normal;
   }

   html {
  scroll-behavior: smooth;
}

   .popup {
       font-family: "Spartan", sans-serif;
       display: none;
       position: fixed;
       z-index: 1000;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.6);
       justify-content: center;
       align-items: center;
   }

   .popup-content {
       background: rgba(255, 255, 255, 0.15);
       backdrop-filter: blur(15px);
       -webkit-backdrop-filter: blur(15px);
       padding: 30px;
       border-radius: 12px;
       width: 100%;
       max-width: 520px;
       box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
       color: #fff;
       position: relative;
       border: 2px solid rgba(255, 255, 255, 0.6);
   }

   .close-btn {
       position: absolute;
       right: 15px;
       top: 12px;
       font-size: 22px;
       font-weight: bold;
       cursor: pointer;
       color: #fff;
   }

   .popup-content h5 {
       margin-bottom: 8px;
       font-weight: 700;
       color: #fff;
       font-size: 15px;
   }

   .popup-content p {
       margin-bottom: 18px;
       font-weight: 500;
       font-size: 14px;
       color: #ddd;
   }

   .popup-content input,
   .popup-content textarea {
       width: 100%;
       padding: 12px;
       margin-bottom: 14px;
       border: none;
       border-radius: 6px;
       font-weight: 500;
       background: rgba(255, 255, 255, 0.9);
       font-size: 14px;
       color: #000;
   }

   .popup-content label {
       font-weight: 500;
       font-size: 14px;

   }

   .popup-content button {
       font-family: "Spartan", sans-serif;
       background: var(--primary);
       color: white;
       border: none;
       padding: 12px 18px;
       border-radius: 0px;
       font-size: 15px;
       font-weight: 500;
       cursor: pointer;
       transition: 0.3s;
   }

   .popup-content button:hover {
       background: #218838;
   }

   body {
       background-color: var(--bg);
   }

   .navbar {
       background-color: #fff !important;
       box-shadow: 0 4px 2px rgba(128, 128, 128, 0.5) !important;
       position: relative !important;
       z-index: 10 !important;
   }

   .navbar-brand {
       padding-top: 0;
       padding-bottom: 0;
       display: flex;
       align-items: center;
   }

   .navbar-brand .navbar-logo {
       height: 70px;
       width: auto;
       display: block;
   }



   .navbar-nav .nav-link {
       font-family: "Afacad", sans-serif;
       color: var(--primary) !important;
       font-weight: 500 !important;
       margin-right: 40px !important;
       position: relative !important;
       transition: color 0.3s ease !important;
       font-size: 20px;
       width: auto !important;
       display: inline-block !important;
   }

   /* Hover effect for navbar links */
   .navbar-nav .nav-link:hover {
       background: radial-gradient(100% 100% at 50% 0%, #3c8427 0%, #5da847 100%);
       padding: 4px 8px;
       color: #ffffff;
       animation: dissolve 0.3s linear;
       color: var(--bg) !important;
       transition: background 0.3s ease-in-out;
   }

   .nav-link.active {
       border-bottom: 3px solid #198754;
       color: #198754 !important;
   }

   .dropdown-item.active {
       background: none !important;
       color: inherit !important;
   }

   .navbar .dropdown-toggle::after {
       display: none !important;
   }

   .nav-item.dropdown.show>.nav-link::after {
       content: "" !important;
       position: absolute !important;
       bottom: -10px !important;
       left: 50% !important;
       transform: translateX(-50%) !important;
       border-width: 8px !important;
       border-style: solid !important;
       border-color: green transparent transparent transparent !important;
   }


   .custom-dropdown {
       left: 50%;
       transform: translateX(-50%);
       text-align: start;
       border-radius: 4px;
       border: none;
       box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
       margin-top: 30px !important;
       padding-top: 20px;
       position: absolute;
   }

   /* Dropdown arrow */
   .dropdown-arrow {
       position: absolute;
       top: 50;
       left: 45%;
       transform: translate(-50%, -100%);
       width: 0;
       height: 0;
       align-items: center;
       border-left: 8px solid transparent;
       border-right: 8px solid transparent;
       border-top: 8px solid green;
   }


   /* Dropdown items */
   .dropdown-item {
       font-family: "Afacad", sans-serif;
       font-weight: 500;
       font-size: 20px;
       color: #333 !important;
       transition: all 0.3s ease !important;
       padding: 10px 20px !important;
   }

   .dropdown-item:hover {
       color: #fff !important;
       background-color: green !important;
       box-shadow: inset 8px 0 0 #fff, inset -8px 0 0 #fff !important;
   }

   /* Contact button */
   .btn-contact {
       font-family: "Afacad", sans-serif;
       font-weight: 500;
       font-size: 20px;
       background-color: var(--primary);
       color: #fff !important;
       padding: 8px 18px;
       border-radius: 4px;
   }

   .btn-contact:hover {
       color: var(--bg) !important;
       background-color: var(--primary) !important;
   }

   /* Hero Section Carousel */
   .carousel-item {
       height: 80vh;
       position: relative;
   }

   .carousel-item img {
       height: 80vh;
       object-fit: cover;
   }

   .carousel-caption {
       position: absolute !important;
       top: 12% !important;
       left: 50px !important;
       text-align: left !important;
   }

   .carousel-caption h1 {
       font-family: "Spartan", sans-serif;
       font-size: 40px;
       font-weight: 600;
       line-height: 1.2;
       max-width: 760px !important;
       color: #fff;
   }

   .carousel-caption hr {
       border: 0.5px solid var(--bg) !important;
       width: 390px !important;
       margin: 4px 0 !important;
       opacity: 1 !important;
   }

   .carousel-caption p {
       max-width: 520px !important;
       font-family: "Spartan", sans-serif;
       font-weight: 500;
       font-size: 16px;
       margin: 20px 0;
       line-height: 1.6;
       color: var(--bg);
   }

   .btn-custom {
       font-family: "Afacad", sans-serif;
       background-color: #fff !important;
       color: var(--primary) !important;
       font-weight: 700 !important;
       padding: 12px 20px !important;
       border-radius: 0px !important;
       text-decoration: none !important;
   }

   .btn-custom:hover {
       background-color: var(--primary);
       color: #fff;
   }

   /* Hide carousel arrows */
   .carousel-control-prev,
   .carousel-control-next {
       display: none !important;
   }

   /* Dots styling */
   .carousel-indicators {
       bottom: 20px !important;
   }

   .carousel-indicators [data-bs-target] {
       background-color: #fff !important;
       width: 10px !important;
       height: 10px !important;
       border-radius: 50% !important;
       opacity: 0.8 !important;
   }

   .carousel-indicators .active {
       background-color: var(--primary) !important;
       opacity: 1 !important;
   }

   .why-choose-section {
       background-color: #3c8c3a;
       color: #fff;
       padding: 50px 0;
       position: relative;
       overflow: hidden;
   }

   .why-choose-section h2 {
       font-family: "Spartan", sans-serif;
       font-size: 25px;
       font-weight: 600;
       margin-bottom: 20px;
   }

   .why-choose-section p {
       font-family: "Spartan", sans-serif;
       font-weight: 500;
       font-size: 20px;
       line-height: 1.6;
   }

   .bg-logo {
       position: absolute;
       right: 20px;
       bottom: 0px;
       opacity: 1;
       max-width: 370px;
   }

   .icon-logo {
       width: 50px;
       margin-bottom: 20px;
   }

   .service-section {
       display: flex;
       justify-content: center;
       align-items: center;
       padding: 30px;
       background: #f4f4f4;

   }

   .services-section h2 {
       font-family: "Spartan", sans-serif;
       font-size: 25px;
       font-weight: 600;
       margin-bottom: 10px;
       color: var(--main-tc);
   }

   .service-card {
       position: relative;
       overflow: hidden;
       max-width: 320px;
       cursor: pointer;
   }

   .service-card img {
       width: 100%;
       height: auto;
       display: block;
       transition: transform 0.5s ease;
   }

   .service-content {
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       padding: 15px;
       background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
       color: #fff;
   }

   .service-content h3 {
       font-family: "Spartan", sans-serif;
       margin: 0;
       font-size: 20px;
       font-weight: 600;
       position: relative;
       transition: transform 0.6s ease;
       min-height: 48px;
   }

   .service-content p {
       font-family: "Spartan", sans-serif;
       font-weight: 400;
       margin: 8px 0 0;
       font-size: 14px;
       line-height: 1.4;
       opacity: 0;
       max-height: 0;
       overflow: hidden;
       transform: translateY(20px);
       transition: all 0.6s ease;
   }

   .service-card:hover img {
       transform: scale(1.6);
   }

   .service-card:hover .service-content h3 {
       transform: translateY(0);
   }

   .service-card:hover .service-content p {
       opacity: 1;
       max-height: 200px;
       transform: translateY(0);
   }

   /* Rooftop Makeovers Section */
   .rooftop-section {
       padding: 60px 0;
       text-align: center;
       background: #fff;
   }

   .rooftop-section h2 {
       font-family: "Spartan", sans-serif;
       font-size: 25px;
       font-weight: 600;
       margin-bottom: 40px;
       color: var(--main-tc);
       text-align: start;
   }

   .rooftop-section .cards {
       display: flex;
       justify-content: flex-start;
       gap: 80px;
       flex-wrap: wrap;
   }

   .rooftop-section .card {
       flex: 1 1 280px;
       max-width: 320px;
       border: none;
       text-align: center;
   }

   .rooftop-section .card img {
       width: 100%;
       height: auto;
       border-radius: 4px;
       margin-bottom: 20px;
   }

   .rooftop-section .card h3 {
       font-family: "Spartan", sans-serif;
       font-size: 25px;
       font-weight: 700;
       color: var(--primary);
       margin-bottom: 12px;
   }
   .rooftop-section .card h3 a {
    text-decoration: none;
    color: var(--primary);
   }

   .rooftop-section .card p {
       font-family: "Spartan", sans-serif;
       font-weight: 500;
       font-size: 20px;
       line-height: 1.2;
       color: var(--main-tc);
       margin: 0 auto;
       max-width: 300px;
   }

   .industries-section h2 {
       font-family: "Spartan", sans-serif;
       font-size: 25px;
       font-weight: 600;
       color: var(--main-tc);
   }

   .industry-cards {
       justify-content: center !important;
       gap: 20px;
   }

   .industry-card {
       display: flex;
       align-items: center;
       border: 2px solid var(--primary);
       margin-left: 30px;

   }

   .industry-card .icon-box {
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .industry-card .icon-box img {
       width: 90px;
       height: 90px;
   }

   .industry-card .text-box {
       flex: 1;
       padding: 15px 10px;
   }

   .industry-card .text-box p {
       font-family: "Spartan", sans-serif;
       margin: 0;
       font-size: 18px;
       font-weight: 500;
       color: var(--main-tc);
   }

   .categories-section {
       background: var(--primary);
       color: #fff;
   }

   .categories-section h2 {
       font-family: "Spartan", sans-serif;
       text-align: start;
       font-size: 25px;
       font-weight: 600;
       padding-bottom: 10px !important;
   }

   .Categories-list {
       justify-content: center;
   }

   .custom-list {
       list-style-type: disc;
       padding-left: 25px;
   }

   .custom-list li {
       font-family: "Spartan", sans-serif;
       font-size: 20px;
       font-weight: 600;
       margin-bottom: 12px;
   }

   .overview,
   .Offered {
       padding-bottom: 40px;
   }

   .overview P,
   ul {
       margin-bottom: 0px !important;
   }

   .overview p,
   .Offered li {
       font-family: "Spartan", sans-serif;
       font-weight: 500;
       font-size: 18px;
       color: var(--main-tc);
       line-height: 1.6;
   }

   .Offered ul {
       font-family: "Spartan", sans-serif;
       margin-top: 15px;
       padding-left: 20px;
   }

   .Offered li {
       font-family: "Spartan", sans-serif;
       margin-bottom: 10px;
   }

   .process-section h2 {
       font-family: "Spartan", sans-serif;
       font-size: 25px;
       font-weight: 600;
       color: var(--main-tc);
   }

   .process-flow {
       text-align: center;
       margin: 30px 0;
   }

   .process-flow .process-image {
       max-width: 90%;
       height: auto;
   }

   .process-section hr {
       border: 1px solid var(--tc-2);
   }

   .process-lists {
       padding-left: 60px;
   }

   .process-list {
       list-style-type: disc;
       padding-left: 20px;

   }

   .process-list li {
       font-family: "Spartan", sans-serif;
       font-weight: 600;
       font-size: 20px;
       margin-bottom: 10px;
       color: var(--main-tc);
   }

   .divider-line {
       border: 1px solid var(--primary);
   }

   .contact-section {
       background: transparent;
   }

   .contact-section h4 {
       font-family: "Spartan", sans-serif;
       font-size: 25px;
       font-weight: 600;
   }

   .contact-section h5 {
       font-family: "Spartan", sans-serif;
       font-size: 22px;
       font-weight: 600;
   }

   .contact-section .highlight {
       color: var(--primary);
   }


   .contact-section ul li {
       font-family: "Spartan", sans-serif;
       font-size: 16px;
       font-weight: 500;
       margin-bottom: 3px;
   }

   .contact-section p {
       font-family: "Spartan", sans-serif;
       font-size: 16px;
       font-weight: 500;
       margin-bottom: 3px;
   }

   .contact-section p a {
       color: var(--main-tc);
       text-decoration: none;
   }

   .contact-section ul li a {
       color: var(--main-tc);
       text-decoration: underline;
       font-size: 18px;
   }

   .contact-section ul li a:hover {
       color: var(--primary);
   }

   .contact-section .form-control {
       border-radius: 0;
       border: 1px solid var(--primary);
       font-size: 16px;
   }

   .contact-section .btn-success {
       font-family: "Afacad", sans-serif;
       font-weight: 400;
       background-color: var(--primary);
       border: none;
       font-weight: bold;
       border-radius: 0;
       font-size: 17px;
   }

   .footer-col form .form-control {
       font-family: "Spartan", sans-serif;
       background-color: transparent;
       border: 1px solid var(--main-tc);
       font-weight: 500;
       font-size: 20px;
       color: var(--tc-2);
       padding: 10px 12px;
       transition: all 0.3s ease-in-out;
   }

   .footer-col form .form-control:focus {
       background-color: #ffffff;
       border-color: var(--primary);
       box-shadow: 0 0 6px rgba(40, 167, 69, 0.3);
       outline: none;
   }

   .footer-col form .form-control::placeholder {
       font-family: "Spartan", sans-serif;
       color: var(--tc-2);
       font-weight: 500;
       font-size: 16px;
   }

   .footer-col {
       padding: 0 40px !important;
   }

   .footer-logo {
       width: 390px;
       max-width: 100%;
       height: auto;
   }



   .footer-row {
       display: flex;
       align-items: stretch !important;
   }

   .footer-col.with-line {
       border-left: 1px solid var(--primary);
   }

   .footer-col:first-child {
       border-left: none;
   }

   .footer-copy {
       font-family: "Spartan", sans-serif;
       font-weight: 500;
       text-align: center;
       font-size: 18px;
       padding-top: 50px;
       color: var(--tc-2);
   }

   /* ROOOFTOP--SERVICE */
   .service-header {
       padding: 20px 0;
       border-radius: 10px;
   }

   .service-header h2 {
       font-family: "Spartan", sans-serif;
       font-size: 25px;
       color: var(--primary);
       font-weight: 700;
       padding-bottom: 10px;
   }

   .services-header h2 {
       font-family: "Spartan", sans-serif;
       color: var(--primary);
       font-size: 25px;
       font-weight: 700;
       padding-bottom: 30px;
       padding-top: 30px;
   }

   .strong-heading {
       font-family: "Spartan", sans-serif;
       font-weight: 600;
       font-size: 22px;
   }

   .areas-covered .btn {
       font-family: "afacad", sans-serif;
       font-weight: 500;
       margin: 5px;
       background-color: var(--primary);
       color: #fff;
       font-size: 18px;
       border-radius: 0px;
   }

   /* Only for this workflow section */
   .process-row {
       display: flex;
       align-items: stretch;
       position: relative;
   }

   .workflow-step {
       display: flex;
       align-items: flex-start;
       margin-bottom: 20px;
   }

   .step-icon {
       width: 40px;
       height: 35px;
       margin-right: 12px;
       display: inline-block;
       flex-shrink: 0;
       margin-bottom: 20px;
       position: relative;
       top: -6px;
   }

   .vertical-line {
       width: 2px;
       background-color: var(--tc-2);
       height: 90%;
       margin: 0 auto;
   }

   .workflow-step p {
       font-family: "Spartan", sans-serif;
       font-weight: 500;
       margin-bottom: 0;
       font-size: 18px;
   }

   .workflow-step ul li {
       font-family: "Spartan", sans-serif;
       font-weight: 500;
       margin-bottom: 0;
       font-size: 18px;
   }

   .overview-text {
       font-family: "Spartan", sans-serif;
       font-weight: 500;
       font-size: 18px;
   }

   .service-header .h6 {
       font-family: "Afacad", sans-serif;
       text-shadow: 0px 2px 2px #00000040;
       font-family: 600;
       font-size: 26px;
   }

   .process-sections h3 {
       font-family: "afacad", sans-serif;
       margin-bottom: 22px;
   }

   .overview-text strong {
       font-family: "Spartan", sans-serif;
       color: var(--main-tc);
   }

   figure {
       position: relative;
   }

   .fig-caption-overlay {
       font-family: "afacad", sans-serif;
       font-weight: 600;
       position: absolute;
       top: 50px;
       left: 0px;
       background: var(--primary);
       color: #fff;
       padding: 8px 15px;
       font-size: 23px;
       font-weight: 500;
   }

   .separator {
       border: none;
       height: 2px;
       background: linear-gradient(to right,
               transparent,
               var(--primary) 50%,
               transparent);
       position: relative;
   }

   .separator::before {
       content: "";
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       width: 40px;
       height: 3px;
       background: var(--primary);
   }

   .list-unstyled {
       font-family: "Spartan", sans-serif;
       font-weight: 500;
       line-height: 2;
       font-size: 18px;
       color: var(--main-tc);
   }

   /* contact-page */
   .requirement-form {
       position: relative;
       z-index: 1;
   }

   .contact-section input[type="email"] {
       border-width: 1px 1px 1px 1px !important;
       border-color: #151515 #151515 #8e8e8e #151515 !important;
   }

   .contact-section input[type="text"] {
       border-width: 1px 1px 1px 1px !important;
       border-color: #8e8e8e #151515 #151515 #151515 !important;
   }

   .contact-section textarea {
       border: 1px solid #151515 !important;
   }

   /* Contact Us Form row inline adjustments */
   .form-row-inline {
       display: flex;
       align-items: flex-start;
       gap: 12px;
       margin-bottom: 0.5rem;
   }

   .form-row-inline label {
       flex: 0 0 140px;
       margin-bottom: 0;
       white-space: nowrap;
   }

   .form-row-inline .form-control,
   .form-row-inline .form-select {
       flex: 1;
       max-width: 100%;
   }

   .textarea.form-control {
       resize: vertical;
   }

   .form-row-update .form-label,
   .form-row-inline .form-label,
   .form-check-label {
       font-size: 18px !important;
       color: #151515;
       font-weight: 500;
   }

   .form-row-update .form-label .update-span,
   .form-row-inline .form-label span {
       font-weight: 500;
       font-size: 14px;
   }

   .form-control,
   .form-select {
       border: 1px solid #8e8e8e !important;
       border-radius: 0px;
       background-color: #f4f4f4;
       color: var(--main-tc);
       font-size: 18px;
   }

   .form-control:focus,
   .form-select:focus {
       background-color: #f4f4f4;
       box-shadow: none !important;
       border: 1px solid #8e8e8e !important;
   }

   .custom-file .btn {
       background: linear-gradient(180deg, #ededed 0%, #cdcdcd 100%);
       border: none;
       box-shadow: 0px 2px 2px 0px #00000040;
       border-radius: 10px;
       width: 160px;
       color: var(--main-tc);
       font-size: 18px;
       padding: 3px 10px;
   }

   .form-checks {
       display: flex;
       align-items: center;
   }

   .form-checks .form-checks-input {
       width: 30px;
       height: 30px;
       border: 2px solid var(--primary);
       margin-right: 10px !important;
       position: relative;
       appearance: none;
       cursor: pointer;
       background-color: #fff;
       /* white background */
   }

   .form-checks .form-checks-input:checked::after {
       content: "✔";
       color: var(--primary);
       font-size: 20px;
       font-weight: bold;
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -55%);
   }



   .form-check .form-check-input:checked {
       background-color: var(--primary);
       border-color: var(--primary);
   }

   .form-checks .form-checks-label {
       font-family: "Spartan", sans-serif !important;
       font-weight: 600 !important;
   }


   .form-check-input:focus {
       box-shadow: none;
   }

   .form-btn {
       font-family: "afacad", sans-serif;
       font-weight: 500;
       background: #3c8427;
       color: #fff;
       padding: 8px 18px;
       box-shadow: 0px 2px 4px 0px #00000040;
       border: none;
   }
   /* Mobile (max 480px) */
@media (max-width: 480px) {
       .form-select option {
        height: auto;
        padding: 5px 10px; 
        font-size: 12px; 
    }
    .requirement-form {
        width: 100%;
        max-width: 100%;
        padding: 12px;
        box-sizing: border-box;
    }

    .form-row-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }

    .form-row-inline label {
        flex: unset;
        font-size: 16px !important;
        margin-bottom: 4px;
    }

    .form-control,
    .form-select,
    textarea {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px;
        padding: 8px;
        box-sizing: border-box;
    }

    .form-btn {
        width: 40%;
        font-size: 16px;
        padding: 10px;
    }

    .custom-file .btn {
        width: 40%;
        text-align: center;
        font-size: 15px;
        padding: 8px;
    }
}

   .seperator {
       border-top: 1px solid #3c8427;
   }

   .whatsapp-float {
       position: fixed;
       bottom: 20px;
       right: 40px;
       width: 50px;
       height: 60px;
       z-index: 1000;
       cursor: pointer;
       transition: transform 0.3s;
   }

   .whatsapp-float img {
       width: 100%;
       height: 100%;
       border-radius: 50%;
   }

   .whatsapp-float:hover {
       transform: scale(1.1);
   }

   @media (max-width: 992px) {
       .hero {
           padding: 40px 10px;
       }

       .hero h1 {
           font-size: 20px;
       }

       .sub-heading {
           font-size: 20px;
       }

       .feature-tag,
       .overview p,
       .services li {
           font-size: 16px;
       }

       .services,
       .features,
       .overview {
           padding: 0px 10px 25px 10px;
       }
   }

   @media (min-width: 992px) {

       .contact-section h5,
       .contact-section img {
           margin-top: 20px;
       }
   }

   /* gllery  */
   .best-works {
       padding: 50px 20px;
   }

   .best-works .container {
       max-width: 1200px;
       margin: 0 auto;
   }

   .best-works h2 {
        font-family: "Spartan", sans-serif;
       font-size: 25px;
       color: var(--primary);
       font-weight: 700;
       padding-bottom: 10px;
   }

   .works-grid {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 10px;
   }

   .work-item {
       width: 100%;
       aspect-ratio: 4 / 3;
       position: relative;
       overflow: hidden;
   }

   .work-item img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.3s;
   }

   .work-item img:hover {
       transform: scale(1.05);
   }

   /* Responsive for mobile */
   @media (max-width: 768px) {
       .works-grid {
           grid-template-columns: 1fr;
           /* 1 column on small mobile */
       }

       .best-works {
           padding: 30px 10px;
       }

       .best-works h2 {
           font-size: 22px;
       }
   }