 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }



        :root {
    --primary: #00ADB5;
    --secondary: #7D0A0A;
    --third: #EAD196;
    --bg: #f7f7f7;
    --text: #222831;
    --text-secondary: #393E46;
    --white: #EEEEEE;
   --font-size-h1: 48px;
   --font-size-h2: 36px;
   --font-size-h3: 24px;
 --font-size-p: 14px;
  --font-size-button: 14px;
--font-size-review: 18px;
--font-size-review-sub: 14px;
}

 
 
 
 .gq-main-section {
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .gq-left-section {
            width: 30%;
            min-width: 300px;
            padding: 10px;
        }

        .gq-right-section {
            width: 60%;
            min-width: 300px;
        }

        /* Slider Styles */
        .gq-slider-wrapper {
            position: relative;
        }

        .gq-slider-container {
            width: 100%;
            overflow-x: hidden;
            scroll-snap-type: x mandatory;
            display: flex;
            gap: 20px;
            padding: 10px;
            scroll-behavior: smooth;
        }

        .gq-slider-container::-webkit-scrollbar {
            display: none;
        }

        .gq-slider-container {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .gq-slider-box {
            flex: 0 0 250px;
            /* background: var(--white); */
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            padding: 20px;
            scroll-snap-align: start;
        }

        .gq-box-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 18px;
            margin-bottom: 15px;
            width: fit-content;
        }

        .gq-box-header i {
            font-size: 16px;
            color: #161616;
        }

        .gq-box-header span {
            font-size: 16px;
            font-weight: bold;
            color: #161616;
        }

        .gq-box1 .gq-box-header { background: #ff6b6b44; 
        }
        .gq-box2 .gq-box-header { background: #4ecdc54f; }
        .gq-box3 .gq-box-header { background: #32ff3c33; }

        .gq-slider-box h3 {
            font-size: var(--font-size-h3);
            margin-bottom: 10px;
            color: #161616;
        }

        .gq-slider-box p {
            font-size: var(--font-size-p);
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Scroll Buttons */
        .gq-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.08);
            color: rgba(255, 255, 255, 0.137);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .gq-scroll-btn:hover {
            background: rgba(0, 0, 0, 0.7);
            color: rgba(255, 255, 255, 0.87);
        }

        .gq-scroll-left {
            left: 10px;
        }

        .gq-scroll-right {
            right: 10px;
        }

        /* Video Container */
        .gq-video-container {
            width: 98%;
            min-width: 320px;
            height: auto;
            margin: 20px auto;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .gq-video-container video {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            object-position: center;
        }

        /* Form Styles */
        .gq-quote-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
        }

        .gq-quote-form h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }

        .gq-form-group {
            margin-bottom: 20px;
        }

        .gq-form-group label {
            display: block;
            font-size: 14px;
            color: #333;
            margin-bottom: 8px;
        }

        .gq-form-group input,
        .gq-form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }

        .gq-form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .gq-submit-btn {
            background: #4ecdc4;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .gq-submit-btn:hover {
            background: #45b7d1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .gq-main-section {
                flex-direction: column;
                padding: 20px;
            }

            .gq-left-section,
            .gq-right-section {
                width: 100%;
            }

            .gq-slider-container {
                flex-wrap: nowrap;
                overflow-x: hidden;
            }

            .gq-video-container {
                max-width: 100%;
            }
        }



.custom-form {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: 8px;
  max-width: 700px;
  margin: auto;
  font-family: sans-serif;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
  /* border: 1px solid #00000065; */
}

.custom-form .form-group {
  margin-bottom: 20px;
}

.custom-form label {
  color: var(--text-secondary);
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.1);
  color: #161616;
  border: 1px solid rgba(0, 0, 0, 0.4);
  font-size: 18px;
}

.custom-form input::placeholder{
font-size: 14px;
opacity: 0.7;
}

.custom-form textarea {
  resize: vertical;
}

.custom-form button {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-form button:hover {
  background-color: #393E46;
}

#thank-you {
  display: none;
  margin-top: 20px;
  color: var(--text-secondary);
  font-weight: bold;
  text-align: center;
}

.gq-right-section h2{
    font-size: var(--font-size-h2);
    padding: 20px;
}

@media(max-width: 768px){
    .gq-main-section{
        flex-direction: column-reverse;
    }
}