@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');



:root {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #2d465e;
    --accent-color: #0092d8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
    --nav-color: #212529;
    --nav-hover-color: #0092d8;
    --nav-mobile-background-color: #ffffff;

}

body {
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    overflow-x: hidden;
    background-color: white;


}
/* header */
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0px;
  transition: all 0.5s;
  z-index: 997;

}


.header .header-container {
  background: var(--surface-color);
  border-radius: 45px;
  padding: 0px 55px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;

}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);

}

.header .logo {
  line-height: 1;
  padding-left: 5px;
  margin: -17px;
}

.header .logo img {
  max-height: 140px;
  margin-right: 8px;

}

.navmenu a {
  text-decoration: none;
  background-color: #ffffff;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.navmenu .dropdown ul {
  background-color: white;
  padding: 0;

  margin: 0;
  list-style: none;
}

/* Optional: Style the dropdown items */
.navmenu .dropdown ul li a {
  color: black;
  padding: 15px 15px;
  text-decoration: none;
  display: block;
  padding-bottom: 21px !important;
}

.navmenu .dropdown ul li a.last-child {
  padding-bottom: 10px !important;
}

.navmenu .dropdown ul li {
  color: black;

  margin-top: -9px;
  text-decoration: none;
  display: block;
}

/* Optional: Add hover effect */
.navmenu .dropdown ul li a:hover {
  background-color: var(--accent-color);
}


@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
    padding-left: 30px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    right: 100%;
    visibility: visible;
    width: 115%;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;

  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


@media (max-width: 600px) {

  .header .header-container {
    padding: 10px 15px;
    /* Adjust padding */
  }

  .header .logo img {
    max-height: 70px;
    /* Further reduce logo size */
  }

  .navmenu a {
    padding: 10px 5px;
    /* More compact navigation items */
  }

  .header .btn-getstarted {
    font-size: 0.7rem;
    /* Smaller button text for mobile */
  }
}

/* herp */
.hero {
    display: flex;
    align-items: center;
    padding: 40px;
    background-image: url();
    background-color: #ffffff;
    max-width: 1800px;
    height: 700px;
    margin: 0 auto;
    padding-top: 50px;
}

.hero-left {
    flex: 1;
    padding-right: 20px;

    margin: 0 auto;
}

.hero-left h1 {
    font-size: 5rem;
    max-width: 530px;
    margin-left: 30px;


}

.hero-left p {
    font-size: 1.2rem;
    margin-left: 30px;
}

.hero-right {
    flex: 1;

}

.right-image {
    margin-left: 120px;
    width: 650px;
}


.features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    width: 450px;
    height: 100px;
    margin-left: 40px;
}

.feature-image {
    width: 100px;
}

.feature {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    margin-left: 10px;
}

.feature h3 {
    font-size: 1rem;

}



/* below hero section */
.belowherosection-trusted {
    background-color: #f8fbff;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
}

.belowherosection-text {
    margin: 0;
    color: #000000;
    font-size: 30px;
    line-height: 1.5;
    max-width: 700px;
}

.belowherosection-highlight {
  background: linear-gradient(135deg, #006aff, #8119e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
    font-weight: bold;
}

.belowherosection-normal {
    display: block;
}

.belowherosection-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;


}

.belowherosection-logo {

    max-height: 100px;
    width: 150px;
    object-fit: contain;

    transition: transform 0.3s ease;

}

.belowherosection-logo:hover {
    transform: scale(1.1);

}


/* benfits */
.benefits-section {
    background-color: #ffffff;
    padding: 80px 20px;
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-section h2 {
    font-weight: bold;
    margin-bottom: 50px;
    font-size: 2.8rem;
    color: #333;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    padding: 25px;
    border: none;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    margin-bottom: 15px;
}

.card h5 {
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #444;
    text-align: center;
}


/* power-hero-section */

.power-hero-section {
  background: linear-gradient(135deg, #006aff, #8119e2);

    color: white;
    padding: 50px 90px;
    max-width: 1300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.power-btn-custom {
    background-color: white;
    color: #000000;
    padding: 20px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;

}

.power-btn-custom:hover {
    background-color: #e9ecef;

    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 

}

.power-text {
    text-align: left;
}

/* featue */
.feature-section {
    background-color: #f8fbff;
    padding: 80px 20px;
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.feature-section h2 {
    font-weight: bold;
    margin-bottom: 50px;
    font-size: 2.8rem;
    color: #333;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.1);
}

.feature-item i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .whychoose- */
.whychoose-section {
  background: linear-gradient(135deg, #006aff, #8119e2);
color: white;
    padding: 40px 20px;
    border-radius: 15px;
    max-width: 1200px;
    height: 310px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.whychoose-section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.img-fluid {
    margin-left: 20px;
    border-radius: 150px;
    margin-top: -130px;
    height: 410px;
    width: 910px;


}

.whychoose-btn {

    background-color: #000000;
    color: white;
    padding: 12px 24px;
    margin-left: 28px;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;

}

.whychoose-btn:hover {
  background-color: #007bff;

}

.whychoose-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
    margin-bottom: 30px;

}

.whychoose-list-item {
    padding-top: 1px;
    padding-left: 30px;
    color: white;
    flex: 1 1 calc(50% - 10px);

    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: bold;

}

/* Responsive adjustments */
@media (max-width: 767px) {
    .whychoose-section {
        padding: 30px 15px;
    }

    .whychoose-list-item {
        flex: 1 1 100%;

    }

    .whychoose-section-title {
        font-size: 28px;

    }
}




.implementation-section {
    background-image: url('pics/trackpic2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1800px;
    padding: 50px 0;
    margin: 0 auto;
    border-radius: 15px;

}

.implementation-header {
    padding-bottom: 30px;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.implementation-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;

}

.implementation {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    padding-left: 80px;


    
}




/* * .whychoose- */ *
.whychoose-section-two {
    padding: 40px 20px;
    border-radius: 15px;
    max-width: 1200px;
    background: linear-gradient(135deg, #006aff, #8119e2);

    height: 310px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;

}

.whychoose-section-titletwo h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    margin-left: 290px;
    text-align: center;
}
.whychoose-section-titletwo h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    margin-left: 290px;
    text-align: center;
}




.why-choose-two-btn{
    background-color: #007bff;
    color: white;
    margin-left: 250px;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 50px;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;

}

.why-choose-two-btn:hover{
    background-color: #000000;

}




/* Adjust hero section for smaller screens */
@media (max-width: 1024px) {
  .hero {
      flex-direction: column;
      text-align: center;
      height: auto;
      padding: 30px;
      padding-top: 110px;
  }

  .hero-left {
      padding-right: 0;
      text-align: center;
  }

  .hero-left h1 {
      font-size: 3rem;
      max-width: 100%;
      margin: 0 auto;
  }

  .hero-left p {
      font-size: 1.2rem;
      margin: 10px auto;
      text-align: center;
  }

  .hero-right {
      display: flex;
      justify-content: center;
  }

  .right-image {
      width: 80%;
      max-width: 500px;
      margin: 20px auto;
  }
}

/* Tablet & Mobile View */
@media (max-width: 768px) {
  .hero-left h1 {
      font-size: 2.8rem;
  }

  .hero-left p {
      font-size: 1rem;
  }

  .right-image {
      width: 90%;
      max-width: 400px;
  }

  .features {
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      gap: 10px;
  }

  .feature {
      width: 100%;
      margin: 10px 0;
  }
}

/* Below Hero Section */
@media (max-width: 1024px) {
  .belowherosection-trusted {
      flex-direction: column;
      text-align: center;
      padding: 30px;
  }

  .belowherosection-text {
      font-size: 26px;
      max-width: 100%;
  }

  .belowherosection-logos {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }

  .belowherosection-logo {
      width: 120px;
  }
}

/* Benefits Section */
@media (max-width: 1024px) {
  .benefits-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
  }

  .benefits-section h2 {
      font-size: 2.4rem;
  }
}

/* Power Hero Section */
@media (max-width: 768px) {
  .power-hero-section {
      flex-direction: column;
      height: auto;
      padding: 30px;
      text-align: center;
  }

  .power-text {
      text-align: center;
      margin-bottom: 20px;
  }

  .power-btn-custom {
      padding: 15px 25px;
      font-size: 1rem;
  }
}

/* Features Section */
@media (max-width: 1024px) {
  .feature-grid {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }

  .feature-item {
      font-size: 1.2rem;
  }
}

/* Why Choose Section */
@media (max-width: 1024px) {
  .whychoose-section {
      padding: 30px;
      height: auto;
      text-align: center;
  }

  .whychoose-section-title {
      font-size: 2.2rem;
  }

  .img-fluid {
      width: 100%;
      max-width: 700px;
      height: auto;
      margin-top: 0;
  }

  .whychoose-btn {
      margin-left: 0;
  }
}

/* Implementation Section */
@media (max-width: 1024px) {
  .implementation-section {
      padding: 40px;
  }

  .implementation-header {
      max-width: 100%;
  }

  .implementation {
      padding-left: 0;
      text-align: center;
  }
}

/* Why Choose Two Section */
@media (max-width: 1024px) {
  .whychoose-section-two {
      height: auto;
      padding: 30px;
  }

  .whychoose-section-titletwo h2,
  .whychoose-section-titletwo h3 {
      margin-left: 0;
      text-align: center;
  }

  .why-choose-two-btn {
      margin-left: 0;
      text-align: center;
      display: inline-block;
  }
}




/* Quick Start Package */
.quickstart-container {
    background: #ffffff;
    color: #333;
    max-width: 1250px;
    margin: 0 auto;
  
  }
  
  
  .quickstart-header {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .quickstart-subtext {
    font-size: 1.2rem;
    color: #000000;
    max-width: 700px;
    margin: auto;
    text-align: left;
  }
  
  .divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #006aff, #8119e2);
    border-radius: 10px;
    margin-top: 10px;
  }
  
  
  .quickstart-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
    height: 400px;
    width: 400px;
  
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  
  .quickstart-item p {
    flex-grow: 1;
  }
  
  
  .quickstart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  
  .quickstart-title a {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 25px;
    color: #222;
    text-align: left;
    text-decoration: none;
  }
  
  .quickstart-title a:hover {
  
    color: var(--accent-color);
  
  }
  
  .quickstart-title a {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 15px;
    color: #000000;
    text-align: left;
  }
  
  
  .quickstart-text {
    font-size: 1rem;
    color: #000000;
    text-align: left;
  }
  
  .quickstart-image {
    width: 360px;
    height: 200px;
  
  }
  
  /* Carousel Controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 55px;
    height: 55px;
    margin: -70px;
    top: 65%;
    background: #00000038;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    opacity: 1;
  }
  
  .carousel-control-icon {
    font-size: 28px;
  }
  
  .carousel-control-icon {
    font-size: 28px;
  }
  




/* qs */

.faq-section {
    padding: 40px;
    background: #ffffff;
    /* Light background for better contrast */
    margin: 0 auto;
}

h2.text-center {
    margin-bottom: 40px !important;
    /* Reduce margin between heading and questions */
}

p.lead {
    font-size: 1.125rem;
    color: #000000;
    font-weight: 300;
}

.accordion-button {
    margin-left: -100px;
    width: 1000px;

    font-size: 1.125rem;
    padding: 15px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background-color: #e9f5ff;
    color: #0056b3;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #006aff, #8119e2);
    color: #fff;
    border-color: #0d6efd;
    font-weight: bold;
}

.accordion-body {
    margin: 0 auto;
    width: 1000px;
    margin-left: -100px;
    padding: 20px;
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
    background-color: #fff;
    border: 1px solid #ddd;
}

.accordion-item {
    border: none;
}

.accordion-item+.accordion-item {
    margin-top: 15px;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  h2.text-center {
      font-size: 2.2rem;
  }

  .accordion-button,
  .accordion-body {
      max-width: 90%;
      font-size: 1rem;
      padding: 12px;
  }
}

@media (max-width: 768px) {
  h2.text-center {
      font-size: 2rem;
  }

  .accordion-button,
  .accordion-body {
      max-width: 95%;
      font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  h2.text-center {
      font-size: 1.8rem;
  }

  .accordion-button,
  .accordion-body {
      max-width: 100%;
      margin-left: 0px;
      font-size: 0.9rem;
      padding: 10px;
  }
}















/* form */

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1800px;
    height: 700px;
    /* Fixed height */
    overflow: hidden;
    /* No scrolling */
    background-color: #f9faff;
    /* Background color */
    margin: 0 auto;
}


.form-row {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}


.form-col-left {
    width: 40%;
    margin-top: 160px;
    padding-right: 20px;
}

.form-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
    line-height: 1.4;
}

.form-highlight {
  background: linear-gradient(135deg, #006aff, #8119e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.form-subtext {
    font-size: 1rem;
    color: #495057;
    margin-top: 1rem;
}

.form-arrow {
    font-size: 1.2rem;    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}


.form-col-right {
    width: 50%;
}

.form-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 0;
    /* No border radius */
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: auto;
    max-width: 700px;
    margin: 0 auto;
}

/* Form Heading */
.form-h5 {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #343a40;
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 0;
    /* No border radius */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
    outline: none;
}

/* Submit Button */
.form-submit {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background: linear-gradient(135deg, #006aff, #8119e2);
    color: #ffffff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-col-left,
    .form-col-right {
        width: 100%;
    }

    .form-col-left {
        padding-right: 0;
        margin-bottom: 20px;
    }
}






/* Footer */
.footer {
    color: var(--default-color);
    font-size: 14px;
    position: relative;
    background-image: url('pics/darkergreyfooter.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: white;
  }
  
  .fot-btn {
    transition: background-color 0.3s ease;
    /* Smooth transition */
    background-color: var(--accent-color);
    color: #fdfdfd;
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
  }
  
  .fot-btn:hover {
    background-color: black !important;
    /* Change to black on hover */
    color: white;
    /* Optional: change text color to white on hover */
  }
  
  .footer .footer-about .logo img {
    max-height: 160px;
    margin-right: 6px;
    width: 200px;
  
  }
  
  .footer-contact {
    margin-top: -40px;
  }
  
  .footer .footer-about p {
    font-size: 16px;
    padding-left: 10px;
    color: white;
  }
  
  .footer .social-links a {
  
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 20px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }
  
  .footer h4 {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    margin-top: 60px;
  
  }
  
  .footer .footer-links {
    margin-bottom: 30px;
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  
  }
  
  .footer .footer-links ul li a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
  }
  
  .footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    color: white;
  }
  
  .footer .footer-contact p {
    margin-bottom: 5px;
  }
  
  .footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: rgb(255, 255, 255);
  }
  
  .footer .credits {
    margin-top: 8px;
    font-size: 13px;
  }
  
  .footer-contact,
  footer .footer-links ul li a:hover {
    color: var(--accent-color);
  }
  
  .contact-footer-links a{
    color: #ffffff;
    text-decoration: none;
  }
  