:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Loader ***/

#loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99991; /* stays on top temporarily */
}

/* Loader Bar */
.loader-sc {
    width: 60%;
    height: 10px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Animated Green Bar */
.loader-sc::before {
    content: "";
    position: absolute;
    background-color: rgb(9, 188, 9);
    width: 0%;
    height: 100%;
    border-radius: 2px;
    animation: load 1s ease-in-out forwards;
    box-shadow: rgb(9, 188, 9) 0px 2px 29px 0px;
}

/* Animation Keyframes */
@keyframes load {
    100% {
        width: 100%;
    }
}

@keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
  /* Class to trigger fade-out */
  .fade-out {
    animation: fadeOut 0.5s ease-out forwards;
  }


/* SC Font - To Keep Uniform */

.sc-font {
    display: inline;
}

.sc-calli {
    display: inline;
    font-family: 'Lucida Calligraphy';
}


@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/* Quote - CSS */

.card-container {
    width: 100%;
    height: 150px;
    margin-top: -60px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .card {
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }
  
  .card .front-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
  }
  
  .card .front-content p {
    font-size: 32px;
    font-weight: 700;
    opacity: 1;
    background: linear-gradient(-45deg, #5133fe 0%, #07014f 100% );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
  }
  
  .card .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background: linear-gradient(-45deg, #5133fe 0%, #07014f 100% );
    color: #e8e8e8;
    padding: 20px;
    line-height: 1.5;
    border-radius: 5px;
    pointer-events: none;
    transform: translateY(96%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .card .content .heading {
    font-size: 32px;
    font-weight: 700;
  }
  
  .card:hover .content {
    transform: translateY(0);
  }
  
  .card:hover .front-content {
    transform: translateY(-30%);
  }
  
  .card:hover .front-content p {
    opacity: 0;
  }
  


/*** Heading ***/
h1, h2, .fw-bold {
    font-weight: 800 !important;
}

h3, h4, .fw-semi-bold {
    font-weight: 700 !important;
}

h5, h6, .fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
    border-radius: 20px;
    
}

.btn-primary, .btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary); 
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square, .btn-sm-square, .btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

    .x-icon {
        display: inline-block;
        background-color: transparent;
        border-radius: 50%;
        padding: 5px;
        transition: background-color 0.3s ease;
    }

    .x-icon img {
        filter: brightness(0) invert(1); /* White icon */
        transition: filter 0.3s ease;
    }

    .x-icon:hover {
        background-color: white; /* White background on hover */
    }

    .x-icon:hover img {
        filter: brightness(0); /* Black icon on hover */
    }


 .sc-top-logo img {
        max-width: 100%;   /* Makes image scale within its container */
        height: auto;      /* Keeps the aspect ratio */
        display: block;    /* Removes unwanted space below image */
    }

    /* Optional: You can control the max size of the logo for better responsiveness */
    @media (min-width: 768px) {
        .sc-top-logo img {
            max-width: 300px; /* Example size for larger screens */
        }
    }


    

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

/* Book Cards - CSS */

/* Container for all cards */
.custom-book-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

/* Book Card */
.custom-book {
  position: relative;
  flex: 1 1 calc(33.33% - 20px);
  max-width: 300px;
  height: 320px;
  background-color: #e6f4ff;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2);
  transform: preserve-3d;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b3d9ff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

/* Cover Page */
.custom-cover-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2);
  transform-origin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.5s ease;
  background-color: #cce6ff;
  /* background-image: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&w=800&q=60'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 2;
}

.custom-cover-page-ai {
  background-image: url('../img/AI.png');

}

.custom-cover-page-cc {
    background-image: url('../img/CloudComputing.png');

}

.custom-cover-page-cs {
    background-image: url('../img/CyberSecurity.png');

}

.custom-cover-page-da {
    background-image: url('../img/DataAnalysis.png');

}

.custom-cover-page-iot {
    background-image: url('../img/IoT-img.png');

}

.custom-cover-page-ns {
    background-image: url('../img/Network-Solutions.png');

}

.custom-cover-page-ts {
    background-image: url('../img/TestingServices.png');

}

.custom-cover-page-con {
    background-image: url('../img/Consultancy-img.png');

}

.custom-cover-page-nget {
    background-image: url('../img/notlisted-git.png');

}

/* Flip cover on hover */
.custom-book:hover .custom-cover-page {
  transform: rotateY(-85deg);
}

/* Inner Page */
.custom-inner-page {
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.custom-book:hover .custom-inner-page {
  opacity: 1;
  pointer-events: auto;
}

.custom-inner-page h2 {
  margin-bottom: 10px;
  color: #004080;
  font-size: 20px;
}

.custom-inner-page p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Cover Page Heading */
.custom-cover-page h1 {
  color: #004080;
  font-size: 22px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 8px;
}

/* Responsive Layout */
@media (max-width: 991px) {
  .custom-book {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 575px) {
  .custom-book {
    flex: 1 1 100%;
    max-width: 100%;
  }
}



/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.text-justify {
  text-align: justify;
}



/* About Us - Mission Vision Portion: Style */

.w1v24b4g {
  display: flex;
  justify-content: space-evenly;
  margin: 20px;
  gap: 15vw; /* Space between the cards */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.f1x8s2zq {
  position: relative;
  width: 30%;
  height: 300px;
  background: #000;
  border-radius: 15px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s;
  margin: 10px; /* Add some space around cards */
}

.b1q9p4r1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
}

.b1q9p4r1.back {
  box-sizing: border-box;
  padding: 20px;
  transform: rotateY(180deg); /* Fix flip issue */
}

.b1q9p4r1.front {
  background-color: #0cbaba;
  border-radius: 15px;
  transition: 0.5s;
}

.b1q9p4r1.front b {
  font-size: 5.1em;
  color: #fff; /* Ensure front text is white */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.f1x8s2zq:hover .b1q9p4r1.front {
  height: 60px;
}

.f1x8s2zq:hover .b1q9p4r1.front b {
  font-size: 2em;
}

.f1x8s2zq:hover .b1q9p4r1.back {
  transform: rotateY(0deg); /* Correct flip */
}

.g8r0h1d3 {
  color: white; /* Ensure text inside back face is white */
}

.m3w8o0e2 {
  color: white; /* Ensure description text is white */
  font-size: 1.1em;
  text-align: justify;

}

.k4j9y5c1 {
  color: white; /* Ensure heading is white */
  font-size: 1.5em;
  text-align: center;
}

@media (max-width: 1200px) {
  .w1v24b4g {
    gap: 10vw; /* Adjust gap for medium screens */
  }
}

@media (max-width: 768px) {
  .w1v24b4g {
    gap: 5vw; /* Adjust gap for smaller screens */
    flex-direction: column; /* Stack cards vertically on smaller screens */
  }

  .f1x8s2zq {
    width: 90%; /* Make the card width responsive */
    margin-bottom: 20px; /* Add space between stacked cards */
  }
}

@media (max-width: 480px) {
  .f1x8s2zq {
    width: 100%; /* Full width on mobile */
    height: 250px; /* Adjust card height on mobile */
  }

  .b1q9p4r1.front b {
    font-size: 3em; /* Adjust front text size for mobile */
  }

  .m3w8o0e2 {
    font-size: 1em; /* Adjust description font size for mobile */
  }
}

/* For Core Values - About Us - Page - Styles */

.cv-section {
  background-color: #f0f8ff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cv-title {
  font-size: 36px;
  color: #1E90FF;
  margin-bottom: 40px;
}

.cv-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.cv-card {
  background-color: #ffffff;
  border: 2px solid #e0f7fa;
  border-radius: 15px;
  width: 250px;
  padding: 30px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.cv-card:hover {
  transform: translateY(-10px);
}

.cv-icon {
  margin-bottom: 20px;
}

.cv-icon img {
  width: 50px;
  height: 50px;
}

.cv-heading {
  font-size: 20px;
  color: #1E90FF;
  margin-bottom: 10px;
}

.cv-text {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cv-container {
    flex-direction: column;
    align-items: center;
  }

  .cv-card {
    width: 80%;
  }
}




/* Basic Services Cards */

.cont {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-b-s {
  position: relative;
  display: flex;
  justify-content: center;
  cursor: pointer;
  width: 22em;
  max-width: 80%;
  padding: 2em 0;
  background: #FFF;
  box-shadow: 0 0 6px 0 rgba(32, 32, 36, 0.12);
  transition: all 0.35s ease;
}

.card-b-s::before, .card-b-s::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: orange;
  height: 4px;
}

.card-b-s::before {
  width: 0;
  opacity: 0;
  transition: opacity 0 ease, width 0 ease;
  transition-delay: 0.5s;
}

.card-b-s::after {
  width: 100%;
  background: white;
  transition: width 0.5s ease;
}

.card-b-s .content-b-s {
  width: 18em;
  max-width: 80%;
}

.card-b-s .logo-b-s {
  margin: 0 0 1em;
  width: 10.625em;
  transition: all 0.35s ease;
}

.card-b-s .h6-b-s {
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
}

.card-b-s .hover_content-b-s {
  overflow: hidden;
  max-height: 0;
  transform: translateY(1em);
  transition: all 0.55s ease;
}

.card-b-s .hover_content-b-s p-b-s {
  margin: 1.5em 0 0;
  color: #6E6E70;
  line-height: 1.4em;
}

.card-b-s:hover {
  width: 24em;
  box-shadow: 0 10px 20px 0 rgba(32, 32, 36, 0.12);
}

.card-b-s:hover::before {
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease, width 0.5s ease;
  transition-delay: 0;
}

.card-b-s:hover::after {
  width: 0;
  opacity: 0;
  transition: width 0 ease;
}

.card-b-s:hover .logo-b-s {
  margin-bottom: 0.5em;
}

.card-b-s:hover .hover_content-b-s {
  max-height: 10em;
  transform: none;
}


/* Free Quote Page CSS */

/* ===== RFQ Form Container ===== */
.quote-form-container {
    max-width: 900px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quote-form-container:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.quote-form-container h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #0078d7;
}

/* ===== Form Sections ===== */
.form-section {
    margin-bottom: 30px;
}

.form-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #444;
    border-left: 4px solid #0078d7;
    padding-left: 10px;
}

/* ===== Form Labels & Inputs ===== */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

label span {
    color: red;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border-color 0.3s, background-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #0078d7;
    background-color: #fff;
    outline: none;
}

/* ===== Checkbox Group ===== */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 20px;
    margin-bottom: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.checkbox-group input {
    margin-right: 10px;
}

/* ===== Consent Checkbox ===== */
.consent {
    font-weight: 500;
    display: flex;
    align-items: center;
}

.consent input {
    margin-right: 10px;
}

/* ===== Submit Button ===== */
.submit-button {
    background-color: #0078d7;
    color: white;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.submit-button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.4);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .quote-form-container {
        padding: 20px;
    }

    .quote-form-container h1 {
        font-size: 26px;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .submit-button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .submit-button {
        width: 100%;
    }
}