/* styles.css */
/* Global Styles */
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

:root {
  --accent-1: #ffcc00;
  --accent-2: #ff3300;
  --brand: #ff6600;
  --brand-dark: #e65c00;
  --nav-text: #ffffff;
  --card-bg: #ffffff;
}
body {
    margin: 0;
    padding: 0;
    padding-top: 48px; /* space for fixed navbar */
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
  }
  
  a {
    color: var(--brand);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
    
  }
  
  /* Navigation Bar */
  
  .navbar {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
  }

  .navbar .logo {
    padding: 10px 20px;
  }
  .navbar .logo a {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--nav-text);    
  }
  .navbar .nav-items {
    margin-left: auto;
    margin-right: 20px;
  }

  /* Nav links container */
  .navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    /* padding: 5px; */
  }
  
  /* Nav link items */
  .navbar .nav-links li {
    color: var(--nav-text);
    font-size: 1em;
    display: inline-block;
    position: relative;
  }

  /* Links */
  .navbar .nav-links a {
    color: var(--nav-text);
    font-size: 1em;
    padding: 15px 20px;
    display: block;
    /* padding:                10px 20px 10px 20px; */
  }

  /* Hover background for top-level items (desktop) */
  .navbar .nav-links li:hover {
    background: var(--brand-dark);
  }

  /* Base dropdown menu styles (desktop specifics handled in responsive.css) */
  .navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.7);
    padding: 0;
    width: 280px;
    z-index: 999;
    background: var(--brand);
  }

.navbar .dropdown-menu li {
    border: 1px solid #140f0f;
    display: block;
    background: var(--brand);
    color: #fff;
  }
.navbar .dropdown-menu li:hover {
  background: var(--brand-dark);
}
.navbar .dropdown-menu a {
  display: block;
  padding: 10px 20px 10px 20px;
  color: #fff;
}
/* Hide hamburger by default (shown in responsive.css for mobile) */
.menu-toggle {
  display: none;
}

/* Add caret baseline styling and arrow rotation */
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.caret {
  display: inline-block;
  transition: transform 0.18s ease;
  font-size: 0.85em;
  line-height: 1;
  margin-left: 6px;
  color: var(--nav-text);
}

/* ----------------------------
   Buttons
   ---------------------------- */
  .btn {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: var(--brand-dark);
  }
  /* ----------------------------
   Layout helpers
   ---------------------------- */

  .section {
    padding: 40px 50px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  
  .contact-form {
    /* padding-inline: 20%; */
  }
  .services h2{
    margin-bottom: 30px;
    margin-top: 0;
    font-size: 1.8em;
    text-align: center;
  }

  .service-detail {
    /* background-color: #ffcc80; */
    /* background-color: #f7f7f7; */
    background-color: #ebebeb; 
  }

  .service-detail .service-description p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1em;
  }
  
  .service-detail .service-description h2 {
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 1.8em;
  }
  
  /* Styling for the list of service features */
  .nice-list {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
  }
  
  .nice-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
  }
  .service-form {
    margin-top: auto;
    /* margin-top: 0px; */

    margin-bottom: auto;
  }
  .service-form h2 {
    /* line-height: 2em; */
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 1.8em;
  }

  .service-form p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1em;
  }

  .service-breakdown {
    background-color: #d4d4d4;
    font-family: 'Inter', sans-serif;
    color: #000000;
    text-align: center;
  }
  .service-breakdown h2 {
    margin-bottom: 30px;
    margin-top: 0;
    font-size: 1.8em;
  }
  
  /* Grid layout for the breakdown list */
  .service-breakdown .service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .service-breakdown .service-list p {
    font-size: 15px;
    padding: 10px 15px;
    margin: 0;
    font-weight: 500;
    color: #333;
  }
  .service-breakdown .service-list ul {
    list-style-type: disc;
    margin: auto 0; 
    padding: 0 1em .5em 40px;
  }
  .service-list .breakdown-list li {
    font-size: 13px;
    padding: 0px;
    text-align: left;
    line-height: 1.7em;
  }
  .service-list .service-item2 {
    max-width: 300px;
    min-width: 265px;
    margin: 0 auto;
    padding: 0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
.service-list .service-item2 h3 {
  clip-path: polygon(100% 70%, 92% 100%, 8% 100%, 0% 70%, 0% 0%, 101% 0%);
  background: linear-gradient(160deg, #ff9900 30%, #ff0000 100%);  
  padding: 20px 10px;
  margin: 0;
  color: #000000;
  font-size: 1.4em;
  border-bottom:1.5px solid #140f0f;
}

.service-list .service-item2:nth-child(5) .circle,
.service-list .service-item2:nth-child(6) .circle h3 {
    /* background: #ffaf00; */
    /* background: linear-gradient(160deg, #ff99009d 30%, #ff0000a8 100%); */
    /* background: linear-gradient(160deg, #ffecb6, #ffbba2); */   
}
.service-list .service-item2:nth-child(4) .circle {
    /* background: #ffaf00; */
    /* background: linear-gradient(160deg, #ff9900 30%, #ff0000 100%);   */
    /* clip-path: polygon(100% 75%, 85% 100%, 15% 100%, 0% 75%, 0% 0%, 100% 0%); */
   
}
  