 :root {
     --primary-color: rgb(3, 21, 80);
     --secondary-color: rgb(255, 179, 0);
     --primary-light: rgba(3, 21, 80, 0.1);
     --primary-lighter: rgba(3, 21, 80, 0.05);
     --secondary-light: rgba(255, 179, 0, 0.1);
     --secondary-lighter: rgba(255, 179, 0, 0.05);
 }

 /* Hero Section with Theme Colors */

 .hero-content h1 {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .hero-content .lead {
     font-size: 1.3rem;
     max-width: 700px;
     margin: 0 auto 30px;
     opacity: 0.95;
 }

 .btn-light {
     background-color: var(--secondary-color) !important;
     color: var(--primary-color) !important;
     border: none;
     padding: 15px 40px;
     font-weight: 600;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .btn-light:hover {
     background-color: rgba(255, 179, 0, 0.9) !important;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(3, 21, 80, 0.3);
 }

 /* Section Headings */
 .text-primary {
     color: var(--primary-color) !important;
 }

 h2.text-primary,
 h3.text-primary,
 h4.text-primary,
 h5.text-primary {
     color: var(--primary-color) !important;
     font-weight: 600;
 }

 /* Service Image Styling */
 .service-img {
     border-radius: 12px;
     box-shadow: 0 15px 30px rgba(3, 21, 80, 0.15);
     border: 3px solid var(--secondary-color);
 }

 /* Feature Cards */
 .feature-card {
     background: white;
     border: 2px solid var(--primary-lighter);
     border-radius: 12px;
     padding: 30px 25px;
     text-align: center;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(3, 21, 80, 0.05);
 }

 .feature-card:hover {
     transform: translateY(-10px);
     border-color: var(--secondary-color);
     box-shadow: 0 15px 30px rgba(3, 21, 80, 0.15);
 }

 .icon-box {
     font-size: 3rem;
     margin-bottom: 20px;
     background: var(--secondary-lighter);
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: var(--secondary-color);
     border: 2px solid var(--secondary-light);
 }

 /* Table Styling */
 .ndis-table {
     border: 2px solid var(--primary-light);
     border-radius: 10px;
     overflow: hidden;
 }

 .ndis-table thead {
     background: linear-gradient(135deg, var(--primary-color) 0%, #1a2d6d 100%);
     color: white;
 }

 .ndis-table th {
     font-weight: 600;
     padding: 15px;
     border-bottom: 2px solid var(--secondary-color);
 }

 .ndis-table td {
     padding: 15px;
     vertical-align: middle;
 }

 .ndis-table tbody tr:nth-child(even) {
     background-color: var(--primary-lighter);
 }

 .ndis-table tbody tr:hover {
     background-color: var(--secondary-lighter);
 }

 .badge.bg-info {
     background-color: var(--secondary-color) !important;
     color: var(--primary-color) !important;
     font-weight: 600;
     padding: 8px 12px;
     border-radius: 6px;
 }

 .text-success {
     color: var(--primary-color) !important;
     font-weight: 600;
 }

 /* Why Choose Us Cards */
 .border.rounded-3 {
     border: 2px solid var(--primary-light) !important;
     border-radius: 12px !important;
     transition: all 0.3s ease;
     background: white;
 }

 .border.rounded-3:hover {
     border-color: var(--secondary-color) !important;
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(3, 21, 80, 0.1);
 }

 /* CTA Section */
 .cta-section {
     background: linear-gradient(135deg, var(--primary-color) 0%, #1a2d6d 100%);
     color: white;
     border-radius: 15px;
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 200px;
     height: 200px;
     background: var(--secondary-color);
     opacity: 0.1;
     border-radius: 50%;
     transform: translate(50%, -50%);
 }

 .cta-section .btn-light {
     background-color: var(--secondary-color) !important;
     color: var(--primary-color) !important;
     font-weight: 600;
     padding: 15px 30px;
 }

 .cta-section .btn-outline-light {
     border: 2px solid white;
     color: white;
     font-weight: 600;
     padding: 15px 30px;
 }

 .cta-section .btn-outline-light:hover {
     background-color: white !important;
     color: var(--primary-color) !important;
 }

 /* Bullet Points Styling */
 .list-unstyled li {
     padding-left: 30px;
     position: relative;
     margin-bottom: 12px;
     color: var(--primary-color);
 }

 .list-unstyled li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--secondary-color);
     font-weight: bold;
     font-size: 1.2rem;
 }

 /* Progress Circle (for task completion if implemented) */
 .progress-circle {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     background: conic-gradient(var(--secondary-color) 0%, rgba(255, 255, 255, 0.1) 0%);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .progress-circle::before {
     content: '';
     position: absolute;
     width: 80px;
     height: 80px;
     background: white;
     border-radius: 50%;
 }

 .progress-number {
     position: relative;
     z-index: 1;
     font-weight: 700;
     color: var(--primary-color);
     font-size: 1.5rem;
 }

 /* Task Status Badges */
 .status-completed {
     background-color: var(--secondary-light) !important;
     color: var(--primary-color) !important;
     font-weight: 600;
     padding: 5px 10px;
     border-radius: 5px;
 }

 .btn-outline-custom {
     border: 2px solid var(--secondary-color);
     color: var(--primary-color);
     transition: all 0.3s ease;
 }

 .btn-outline-custom:hover {
     background-color: var(--secondary-color);
     color: var(--primary-color);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 2.5rem;
     }

     .hero-content .lead {
         font-size: 1.1rem;
     }

     .service-img {
         margin-bottom: 30px;
     }

     .feature-card {
         padding: 20px 15px;
     }

     .cta-section {
         padding: 30px 20px !important;
     }

     .cta-section .btn {
         width: 100%;
         margin-bottom: 10px;
     }
 }

 @media (max-width: 576px) {
     .hero-section {
         padding: 60px 0;
     }

     .hero-content h1 {
         font-size: 2rem;
     }

     .icon-box {
         width: 60px;
         height: 60px;
         font-size: 2rem;
     }

     .ndis-table {
         font-size: 0.9rem;
     }

     .ndis-table th,
     .ndis-table td {
         padding: 10px 8px;
     }
 }

 /* other css */

 /* Theme Variables */
 :root {
     --primary: rgb(3, 21, 79);
     --secondary: rgb(255, 179, 0);
     --light: #f8f9fa;
     --dark: #333;
     --gray: #6c757d;
     --light-gray: #e9ecef;
 }

 .hero-section {
     background:
         linear-gradient(135deg, rgba(3, 21, 79, 0.75) 0%, rgba(79, 92, 157, 0.496) 100%),
         url('../assets/bg/bg-1.jpg') center/cover no-repeat;
     padding: 120px 0;
     text-align: center;
     position: relative;

 }

 /* Reset & Base Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: var(--dark);
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Common Components */
 .btn-primary {
     background-color: var(--secondary);
     color: var(--primary);
     border: none;
     padding: 12px 30px;
     border-radius: 4px;
     font-weight: 600;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s ease;
 }

 .btn-primary:hover {
     background-color: #e6a700;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .btn-secondary {
     background-color: transparent;
     color: var(--primary);
     border: 2px solid var(--primary);
     padding: 10px 28px;
     border-radius: 4px;
     font-weight: 600;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s ease;
 }

 .btn-secondary:hover {
     background-color: var(--primary);
     color: white;
 }

 /* Card Styles */
 .card {
     background: white;
     border-radius: 8px;
     padding: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease;
 }

 .card:hover {
     transform: translateY(-5px);
 }

 /* Section Spacing */
 section {
     padding: 80px 0;
 }

 /* Table Styles */
 .responsive-table {
     width: 100%;
     border-collapse: collapse;
     margin: 30px 0;
 }

 .responsive-table th {
     background-color: var(--primary);
     color: white;
     padding: 15px;
     text-align: left;
 }

 .responsive-table td {
     padding: 15px;
     border-bottom: 1px solid var(--light-gray);
 }

 /* Utility Classes */
 .text-primary {
     color: var(--primary);
 }

 .text-secondary {
     color: var(--secondary);
 }

 .bg-primary {
     background-color: var(--primary);
 }

 .bg-secondary {
     background-color: var(--secondary);
 }

 .bg-light {
     background-color: var(--light);
 }

 .bg-dark {
     background-color: var(--dark);
 }

 .text-center {
     text-align: center;
 }

 .text-right {
     text-align: right;
 }

 .mb-1 {
     margin-bottom: 10px;
 }

 .mb-2 {
     margin-bottom: 20px;
 }

 .mb-3 {
     margin-bottom: 30px;
 }

 .mb-4 {
     margin-bottom: 40px;
 }

 .mb-5 {
     margin-bottom: 50px;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     section {
         padding: 60px 0;
     }

     .container {
         padding: 0 15px;
     }

     .btn-primary,
     .btn-secondary {
         padding: 10px 20px;
         font-size: 14px;
     }
 }

 /*

Template 2107 New Spot

http://www.tooplate.com/view/2107-new-spot

COLOR CODES

	Primary (Pink):   #CC0064
	Secondary (Blue): #0095BF
  
*/

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #eee;
  color: #6c6c6c;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  overflow-x: hidden;
}

.tm-container {
  background-color: white;
  max-width: 1400px;
}

.tm-site-title {
  color: #cc0064;
  font-size: 3rem;
}

.tm-site-subtitle {
  color: #0095bf;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.tm-section-1 {
  height: 750px;
  background-image: url(../img/spot-bg-01.jpg);
  background-size: cover;
  -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 84%, 0px 100%);
  clip-path: polygon(0px 0px, 100% 0px, 100% 84%, 0px 100%);
  /* background-position: center -95px; */
  background-repeat: no-repeat;
  padding-top: 75px;
}

.tm-section-3 {
  height: 790px;
  background-image: url(../img/spot-bg-02.jpg);
  background-size: cover;
  -webkit-clip-path: polygon(0px 0px, 100% 14%, 100% 86%, 0px 100%);
  clip-path: polygon(0px 0px, 100% 14%, 100% 86%, 0px 100%);
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.tm-color-primary {
  color: #cc0064;
}

.tm-color-secondary {
  color: #0095bf;
}

.tm-btn-primary {
  color: white;
  background-color: #cc0064;
}

.tm-btn-primary:hover,
.tm-btn-primary:focus {
  background-color: #f21b85;
}

.tm-btn-secondary {
  color: white;
  background-color: #0095bf;
}

.tm-btn-secondary:hover,
.tm-btn-secondary:focus {
  background-color: #44cbf1;
}

.tm-bg-circle-white {
  background-color: white;
  color: #6c6c6c;
  padding: 75px 81px 75px 90px;
  border-radius: 50%;
  width: 550px;
  height: 550px;
}

.tm-bg-circle-pad-2 {
  padding-left: 120px;
}

p,
ul {
  line-height: 2;
  font-weight: 300;
}

ul {
  margin: 0;
}
ul.dashed {
  list-style-type: none;
}
ul.dashed > li {
  text-indent: -5px;
}
ul.dashed > li:before {
  content: "-";
  margin-right: 5px;
  text-indent: -5px;
}

.btn {
  padding: 10px 30px;
  font-size: 1.15rem;
  font-weight: 300;
  border-radius: 8px;
}

a.btn:hover {
  color: white;
  text-decoration: none;
}

.tm-flex-center-v {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tm-text-container {
  max-width: 420px;
}

.tm-circle-img {
  width: 550px;
}

.tm-circle-img-container {
  text-align: right;
}

.tm-contact-form {
  max-width: 280px;
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #cc0064;
}

.form-control:focus {
  box-shadow: none;
  border-color: #cc0064;
  border-width: 2px;
}

.tm-send-btn {
  border-radius: 5px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.tm-footer-link {
  color: #6c6c6c;
}

.tm-footer-link:hover,
.tm-footer-link:focus {
  color: #cc0064;
  text-decoration: none;
}

@media (min-width: 576px) {
  .container {
    max-width: none;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1050px;
  }
}

@media (max-width: 992px) {
  .tm-bg-circle-white {
    margin-left: auto;
    margin-right: auto;
  }
  .tm-section-left {
    margin: 50px auto;
  }

  .tm-circle-img-container {
    text-align: center;
  }

  .tm-contact-form {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .tm-contact-right {
    margin-bottom: 50px;
  }

  .tm-footer-text {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media (max-width: 576px) {
  .tm-bg-circle-white {
    border-radius: 100px;
    width: 100%;
    height: auto;
    padding: 50px;
  }

  img {
    max-width: 100%;
  }

  .tm-section-1,
  .tm-section-3 {
    height: auto;
  }

  .tm-section-1 {
    padding-bottom: 90px;
    -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 92%, 0px 100%);
    clip-path: polygon(0px 0px, 100% 0px, 100% 92%, 0px 100%);
  }

  .tm-section-3 {
    padding-top: 100px;
    padding-bottom: 100px;
    -webkit-clip-path: polygon(0px 0px, 100% 8%, 100% 92%, 0px 100%);
    clip-path: polygon(0px 0px, 100% 8%, 100% 92%, 0px 100%);
  }

  .tm-circle-img-container {
    margin-bottom: 30px;
    
  }
}