*{
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* ----------------------------------------------- */

.actives {
  border-bottom: 2px solid #0f236c;
}

/* Header styling */
#header {
  background-color: white;
  display: grid;
  grid-template-columns: 100px 80px 10fr 3fr;
  align-items: center;
  padding: 10px 20px;
}

/* Logo styling */
.head_logo img {
  width: 80px;
  transition: transform 0.3s ease;
  border-radius: 25px;
}

.head_logo img:hover {
  transform: scale(1.1);
}

/* Navigation styling */
.head_nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.head_nav a {
  text-decoration: none;
  font-size: 1.1rem;
  color: black;
  padding: 5px 10px;
  border-radius: 4px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.head_nav a:hover {
  color: #0f236c;
  border-bottom: 2px solid #f29826;
}

.head_nav a:focus {
  outline: none;
  box-shadow: 0 0 5px #1d3ea8;
}

/* Button container styling */
.head_button {
  display: flex;
  gap: 20px; /* Space between buttons */
}

/* General button styling */
.head_button button {
  background-color: white;
  color: #0f236c;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.head_button button:hover {
  background-color: #0f236c;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 5px #1d3ea8;
}

/* Button-specific styles for #button2 */
.head_button #button2 {
  background-color: #0f236c;
  color: #ffffff;
}

.head_button #button2:hover {
  background-color: white;
  color: #0f236c;
  transform: scale(1.05);
  box-shadow: 0 0 5px #1d3ea8;
}

/* Focus effects for buttons */
.head_button button:focus {
  outline: 2px solid #0f236c;
  box-shadow: 0 0 5px #1d3ea8;
}

.head_button #button2:focus {
  background-color: white;
  color: #0f236c;
}

.head_button #button2:focus a{
  color: #0f236c;
}

/* Link styling inside buttons */
.head_button a {
  text-decoration: none;
  color: inherit; /* Inherit button color */
  font-size: inherit; /* Match button font size */
}

/* Specific link styles */
#button1 a {
  color: #0f236c;
}

#button1:hover a {
  color: #ffffff;
}

#button2 a {
  color: #ffffff;
}

#button2:hover a {
  color: #0f236c;
}


/* ------------------------------------------------------------------------------------------------------------- */
.about1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 50px;

}

.about1f{

    background-color: #0d1041;
    color: #fefefe;


}

.abimg img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: auto;
    display: block;
}

.abcont {
    text-align: left;
    padding: 20px;
}

.abcont h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.abcont span {
    color: #ef8418;
}

.abcont p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.abcont button {
    background-color: #ef8418;
    border: none;
    color: #0d1041;
    padding: 10px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.abcont button a {
    text-decoration: none;
    color: inherit;
}

.abcont button:hover {
    background-color: #d47314;
}

.adfot p{

    text-align: center;
    font-size: 25px;
    margin-left: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about1 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .abcont h1 {
        font-size: 2.5rem;
    }

    .abcont p {
        font-size: 1rem;
    }

    .abimg img {
        max-width: 300px;
    }
}


/* --------------------------------------------------------- */

.about2{

    display: grid;
    grid-template-columns: auto 500px;
    align-items: center;
    gap: 20px;
    padding: 80px;
    justify-content: center;

    background-color: #0d1041;
    color: #fefefe;

    
}

.ab2_img img{

    justify-content: center;
    margin-left: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab2_img img:hover{

    transform: scale(1.1); /* Zooms the image to 110% of its size */
    box-shadow: 0 4px 8px #d47314;
}


.ab2_content h1{

    font-size: 75px;
}

.ab2_content p{
    font-size: 20px;
}

.ab2_content span{
    color: #d47314;
}

.ab2_content p span {
    color: #d47314;
    border-bottom: #d47314 solid 1px;
}



/* --------------------------------------------------------- */

.about3 {
    background-color: #0d1041;
    width: 100%;
    height: auto;
    color: #ffffff;
    padding: 80px;
    gap: 10px;
}

.about3 img {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for images */
.about3 img:hover {
    transform: scale(1.1) rotate(5deg);
}

.innov,
.exc,
.integ {
    display: grid;
    grid-template-columns: 300px 700px;
    padding: 20px;
    border: #d47314 solid 2px;
    margin-bottom: 15px;
    border-radius: 10px 75px;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Reverse columns for the .integ section */
.integ {
    grid-template-columns: 700px 300px;
}

/* Hover effect for sections */
.innov:hover,
.exc:hover,
.integ:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 15px rgba(212, 115, 20, 0.5);
}

/* Text animation for headings */
.about3 h1 {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    animation: text-slide 1s ease-in-out;
}

@keyframes text-slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.about3 span {
    color: #d47314;
    font-size: 50px;
    transition: color 0.3s ease;
}

/* Hover effect for span */
.about3 span:hover {
    color: #ffffff;
}

/* Paragraph fade-in effect */
.about3 p {
    opacity: 0;
    animation: fade-in 1.2s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* <!-- -------------------------------------------------------------------------------------------------------------------------- --> */


.about4 a {
    text-decoration: none;
    color: #fefefe;
}

.about4 a:hover {
        
    color: #0a0303;
}

.about4 {
    background-color: #0d1041;
    color: #fefefe;
    padding: 20px; /* Added padding for better spacing */
}

.ab_services i {
    color: #d47314;
    font-size: 40px; /* Increased size for better visibility */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.ab_services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Responsive grid layout */
    gap: 20px; /* Space between grid items */
    padding: 30px;
}

.ser1_icon {
    float: left;
    margin-right: 20px; /* Spacing between icon and text */
}

.ser1 {
    border: 2px solid #d47314;
    border-radius: 8px; /* Rounded corners for a modern look */
    padding: 15px;
    background-color: #1c1f4a;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    margin-bottom: 10px;
    margin-left: 10px;
}

.ser1:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 4px 15px rgba(212, 115, 20, 0.4); /* Add shadow on hover */
}

.ser1_icon i:hover {
    color: #ffffff; /* Change icon color on hover */
}

.ser1 h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.ser1 p {
    font-size: 16px;
    color: #d6d6d6;
    line-height: 1.6;
}


.animated-button {
    border: none;
    outline: 0;
    padding: 10px 20px;
    color: white;
    background-color:#d47314;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.animated-button:hover {
    background-color: #d47314;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.animated-button a {
    text-decoration: none;
    font-size: 22px;
    color: rgb(244, 241, 241);
    transition: opacity 0.3s ease;
}

.animated-button a:hover {
    opacity: 1.7;
}



/* From Uiverse.io by mask_guy_0 */ 
.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: white;
    box-shadow: 0 0 0 2px white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button svg {
    position: absolute;
    width: 24px;
    fill: white;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .arr-1 {
    right: 16px;
  }
  
  .animated-button .arr-2 {
    left: -25%;
  }
  
  .animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: black;
    border-radius: 12px;
  }
  
  .animated-button:hover .arr-1 {
    right: -25%;
  }
  
  .animated-button:hover .arr-2 {
    left: 16px;
  }
  
  .animated-button:hover .text {
    transform: translateX(12px);
  }
  
  .animated-button:hover svg {
    fill: #212121;
  }
  
  .animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px white;
  }
  
  .animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
  }
  
  /* ----------------------------------------------------- */
  .about5 {
    background-color: #0d1041;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: #d6d6d6;
}

.card {
    background: linear-gradient(145deg, #1c1e65, #151741);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    margin: auto;
    text-align: center;
    font-family: "Arial", sans-serif;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.card img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.card img:hover {
    transform: scale(1.1);
}

.card h1 {
    font-size: 24px;
    margin: 20px 0 10px;
    color: #ffffff;
}

.card .title {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 10px;
}

.card p {
    margin: 5px 0;
}

.card .social-links a {
    text-decoration: none;
    font-size: 20px;
    margin: 0 10px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.card .social-links a:hover {
    color: #1db954;
}


/* Additional Animation for Cards */
.card {
    animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* From Uiverse.io by david-mohseni */ 
.wrapper {
    display: inline-flex;
    list-style: none;
    height: 120px;
    width: 100%;
    padding-top: 40px;
    font-family: "Poppins", sans-serif;
    justify-content: center;
  }
  
  .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
  }
  
/* From Uiverse.io by mobinkakei */ 
.btn {
    width: 140px;
    height: 50px;
    background: linear-gradient(to top, #00154c, #12376e, #23487f);
    color: #fff;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }

  .btn a{
    text-decoration: none;
    color: #fff;

  }
  
  .btn span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: top 0.5s;
  }
  
  .btn-text-one {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .btn-text-two {
    position: absolute;
    width: 100%;
    top: 150%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .btn:hover .btn-text-one {
    top: -100%;
  }
  
  .btn:hover .btn-text-two {
    top: 50%;
  }
  
  .card:hover {
    border: 3px solid #d47314;
    box-shadow: 0 0 15px #d47314, 0 0 30px #d47314;
    transform: translateY(-10px);
    transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.about5f{

    background-color:#0d1041;
    color: #d6d6d6;
    /* align-content: center; */

    text-align: center;

}

.hr{
    font-size: 50px;
}


/* ---------------------------------------------------------------------------------------- */
/* Footer Section */
#footer {
    background-color: #0e1041; /* Dark blue background */
    color: #fefefd; /* Light text color */
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    border-top: #d47314 solid 1.5px;
  }
  
  /* Footer Container */
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Flexible grid layout */
    gap: 20px;
    max-width: 1200px;
    /* margin: 0 20px; */
    align-items: start;
    justify-items: center; /* Center align items in their grid cells */
    justify-content: center;
    padding: 0 20px;
    margin-left: 100px;
  }
  
  /* Footer Logo Section */
  .footer_log {
    grid-column: span 1; /* Keeps the logo as a single grid item */
    text-align: center; /* Center-aligns the logo */
  }
  
  .footer_log img {
    max-width: 200px; /* Ensures the logo is clearly visible */
    height: auto;
    margin-bottom: 20px;
  }
  
  /* About Section */
  .footer-section.about h3 {
    color: #ec7a14; /* Highlight color for header */
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .footer-section.about p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
  }
  
  /* Quick Links Section */
  .footer-section_links h3 {
    color: #ec7a14;
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .footer-section_links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section_links ul li {
    margin-bottom: 10px;
  }
  
  .footer-section_links ul li a {
    color: #fefefd;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
  }
  
  .footer-section_links ul li a:hover {
    color: #ec7a14; /* Highlight link color */
  }
  
  /* Contact Section */
  .footer-section.contact h3 {
    color: #ec7a14;
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .footer-section.contact p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .footer-section.contact i {
    margin-right: 10px;
    color: #ec7a14;
  }
  
  /* Social Media Links */
  .footer-section.social h3 {
    color: #ec7a14;
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .footer-section.social ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section.social ul li {
    margin-bottom: 10px;
  }
  
  .footer-section.social ul li a {
    color: #fefefd;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease-in-out;
  }
  
  .footer-section.social ul li a i {
    margin-right: 10px;
  }
  
  .footer-section.social ul li a:hover {
    color: #ec7a14;
  }
  
  /* Footer Bottom Section */
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 122, 20, 0.3); /* Subtle border */
    font-size: 14px;
    margin-top: 30px;
    color: #fefefd;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr; /* Single column layout on smaller screens */
      text-align: center;
    }
  
    .footer_log img {
      max-width: 150px; /* Smaller logo for smaller screens */
    }
  
    .footer-section.social ul {
      display: flex;
      justify-content: center;
      gap: 15px;
    }
  }
  

  
/* ------------------------------------------------- */



button:hover {
  background-color: #f29826;
  transform: scale(1.05);
}

#popupForm {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  animation: scaleUp 0.3s ease forwards;
}

#closePopup {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #0f236c;
}

#closePopup:hover {
  color: #f29826;
}

input[type="text"], input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.checkbox-group label {
  font-size: 14px;
  cursor: pointer;
}

button[type="submit"] {
  width: 100%;
  background-color: #0f236c;
  padding: 12px;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #f29826;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes scaleUp {
  from {
      transform: scale(0.8);
  }
  to {
      transform: scale(1);
  }
}


/* -------------------------------------------------- */


.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

/* Popup Content */
.popup-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
  opacity: 1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff4444;
}

/* Popup Heading */
.popup-content h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: #333;
  font-weight: bold;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
  border-color: #2196F3;
  box-shadow: 0 0 8px rgba(33, 150, 243, 0.2);
  outline: none;
}

/* Services Grid and Checkbox Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 20px;
}

.service-option {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-option:hover {
  background: #e9e9e9;
}

.service-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  display: inline-block;
  height: 22px;
  width: 22px;
  margin-right: 10px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-option:hover input ~ .checkmark {
  border-color: #4CAF50;
}

.service-option input:checked ~ .checkmark {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.service-option input:checked ~ .checkmark:after {
  display: block;
}

.service-option span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #2196F3;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
  font-weight: bold;
}

.submit-btn:hover {
  background: #1E88E5;
  transform: translateY(-3px);
}

/* Thank You Popup Styles */
.thank-you-icon {
  text-align: center;
  font-size: 50px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.thank-you-title {
  font-size: 28px;
  color: #4CAF50;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.thank-you-message {
  font-size: 16px;
  color: #555;
  text-align: center;
  margin-bottom: 20px;
}

.close-thank-you {
  display: block;
  width: 100%;
  padding: 12px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  font-weight: bold;
}

.close-thank-you:hover {
  background: #45a049;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
      grid-template-columns: 1fr;
  }
}