@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #ffffff;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
}

p {
  font-size: 16px;
  color: #555;
}

a {
    color: var(--primary);
}

/* ===== Color Variables ===== */
:root {
  --primary: #33cccc;
  --secondary: #22C55E;
  --dark: #1E1E2F;
  --light: #F5F7FA;
  --text: #1A1A1A;
  --muted: #555;
  --success: #22C55E;
  --error: #EF4444;
  --gradient: linear-gradient(90deg, #8ace06, #335b52);
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #1d4db4;
  box-shadow: 0 4px 10px rgba(36, 89, 191, 0.2);
}

.btn-gradient {
  background: var(--gradient);
  color: #fff;
  border: none;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(87, 21, 164, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== Cards ===== */
.card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== Section Padding ===== */
section {
  padding: 0 0;
}

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

/* ===== Forms ===== */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 89, 191, 0.1);
}

/*  */
/* Header Block */
.header-block {
  background: var(--gradient);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Navbar */
.navbar {
  padding: 0.8rem 0;
}

.navbar-brand img {
    max-width: 56px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}
.navbar-brand {
    width: fit-content;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.navbar-brand:hover > span {
    color: #20463d;
}

@media (max-width: 991px) {
	.navbar-brand > span {
		display: none;
	}
}


/* Navbar Links */
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffdd57; /* golden highlight for active/hover */
}

/* Dropdown Menu */
.dropdown-menu {
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.dropdown-menu .dropdown-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background: var(--gradient);
  color: #fff;
}

/* Navbar Toggler (Mobile) */
.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
  }

  .navbar-nav .nav-link {
    color: var(--text);
    padding: 0.8rem 1rem;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--primary);
  }
}


/* ===== Footer ===== */
footer {
    background: var(--gradient);
    color: #fff;
    padding: 40px 0;
}

footer h5, footer h6, footer p {
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


/*  */

/* Section Wrapper */
.main-content-section {
  background: #f9f9ff;
  padding: 60px 0;
}

/* Gradient Heading */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
}

/* Button */
.btn-primary {
  background: linear-gradient(90deg, #2459bf, #5715a4);
  border: none;
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #5715a4, #2459bf);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.content-image-wrapper img {
  max-width: 90%;
  transition: transform 0.3s ease;
}
.content-image-wrapper img:hover {
  transform: scale(1.05);
}
