/* ==================================
   GOOGLE FONT
================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ==================================
   CSS VARIABLES
================================== */

:root {
  --primary: #0b6ec5;
  --secondary: #27c4d5;
  --green: #7ea82c;

  --dark: #111111;
  --text: #555555;

  --white: #ffffff;
  --light: #f8f9fa;

  --border: #e5e5e5;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);

  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 30px;

  --transition: all 0.3s ease;
}

/* ==================================
   RESET
================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  font-size: 16px;

  line-height: 1.7;

  color: var(--text);

  overflow-x: hidden;

  background: var(--white);
}

/* ==================================
   IMAGES
================================== */

img {
  max-width: 100%;
  display: block;
}

/* ==================================
   LINKS
================================== */

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ==================================
   LISTS
================================== */

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==================================
   HEADINGS
================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);

  font-weight: 700;

  line-height: 1.3;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 28px;
}

p {
  margin-bottom: 0;
}

/* ==================================
   SECTION SPACING
================================== */

section {
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 70px 0;
}

/* ==================================
   CONTAINER
================================== */

.container {
  position: relative;
  z-index: 2;
}

@media (min-width: 1400px) {
  .container {
max-width: 1140px;  }
}

/* ==================================
   COMMON TITLE
================================== */

.section-title {
  margin-bottom: 60px;

  text-align: center;
}

.section-title span {
  display: inline-block;

  color: var(--green);

  font-weight: 600;

  margin-bottom: 10px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  max-width: 700px;

  margin: auto;
}

/* ==================================
   BUTTONS
================================== */

.btn {
  border-radius: 50px;

  padding: 14px 30px;

  font-size: 15px;

  font-weight: 600;

  transition: var(--transition);
}

.btn-primary-custom {
  background: var(--primary);

  color: var(--white);
}

.btn-primary-custom:hover {
  background: #0958a0;

  color: var(--white);
}

.btn-secondary-custom {
  background: var(--secondary);

  color: var(--white);
}

.btn-secondary-custom:hover {
  background: #18b1c1;

  color: var(--white);
}

/* ==================================
   CARDS
================================== */

.custom-card {
  background: var(--white);

  border-radius: var(--radius-md);

  overflow: hidden;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.custom-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-md);
}

/* ==================================
   FORM
================================== */

.form-control {
  height: 55px;

  border-radius: 10px;

  border: 1px solid var(--border);

  box-shadow: none !important;
}

textarea.form-control {
  height: auto;
}

.form-control:focus {
  border-color: var(--primary);
}

/* ==================================
   BACKGROUND UTILITIES
================================== */

.bg-light-custom {
  background: #f8fafc;
}

.bg-primary-custom {
  background: var(--primary);
}

.bg-secondary-custom {
  background: var(--secondary);
}

/* ==================================
   TEXT UTILITIES
================================== */

.text-primary-custom {
  color: var(--primary);
}

.text-secondary-custom {
  color: var(--secondary);
}

.text-green {
  color: var(--green);
}

/* ==================================
   SHADOW UTILITIES
================================== */

.shadow-sm-custom {
  box-shadow: var(--shadow-sm);
}

.shadow-md-custom {
  box-shadow: var(--shadow-md);
}

/* ==================================
   SPACING UTILITIES
================================== */

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

/* ==================================
   LOADER (OPTIONAL)
================================== */

.page-loader {
  position: fixed;

  inset: 0;

  background: #fff;

  z-index: 99999;

  display: flex;

  align-items: center;

  justify-content: center;
}

.loader-circle {
  width: 50px;

  height: 50px;

  border: 4px solid #ddd;

  border-top-color: var(--primary);

  border-radius: 50%;

  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==================================
   SCROLLBAR
================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(180, 180, 180, 0.4);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 991px) {
  h2 {
    font-size: 34px;
  }

  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 30px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-padding {
    padding: 70px 0;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: 26px;
  }

  .section-padding {
    padding: 60px 0;
  }
}


