
:root {
  --dark-blue: #1A3A5F;
  --medium-blue: #2D5F8A;
  --light-blue: #7EABD0;
  --gold: #E5B168;
  --emerald: #38A37E;
  --light-gray: #F5F7FA;
  --white: #FFFFFF;
  --dark-gray: #333333;
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--medium-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--emerald);
  text-decoration: none;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--dark-blue);
  color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--medium-blue);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--gold);
  color: var(--dark-blue);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #d9a55c;
  color: var(--dark-blue);
}


.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-link {
  color: var(--dark-blue);
  font-weight: 600;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  width: 100%;
}

.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item {
  padding: 10px 20px;
  color: var(--dark-blue);
}

.navbar-nav .dropdown-item:hover {
  background-color: var(--light-gray);
}


.diagonal-section {
  position: relative;
  padding: 100px 0;
  margin: 50px 0;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-gray);
  transform: skewY(-5deg);
  transform-origin: top left;
  z-index: -1;
}

.diagonal-section.alt::before {
  background-color: var(--white);
  transform: skewY(5deg);
}

.diagonal-section.dark::before {
  background-color: var(--dark-blue);
}

.diagonal-section.dark h2,
.diagonal-section.dark p {
  color: var(--white);
}


.hero-section {
  position: relative;
  padding: 150px 0;
  background-color: var(--dark-blue);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 58, 95, 0.85) 0%, rgba(56, 163, 126, 0.85) 100%);
  z-index: 1;
}

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

.hero-content {
  color: var(--white);
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


.about-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(-3deg);
}


.service-card {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: fit-content;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}


.testimonial-container {
  position: relative;
  padding: 40px 0;
}

.testimonial-card {
  position: relative;
  padding: 40px;
  margin: 20px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(229, 177, 104, 0.1);
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-author-info h5 {
  margin: 0;
  color: var(--dark-blue);
}

.testimonial-author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--medium-blue);
}


.contact-form {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--medium-blue);
}

.contact-info {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--dark-blue);
  color: var(--white);
}

.contact-info h3, .contact-info h5 {
  color: var(--white);
}

.contact-info a {
  color: var(--light-blue);
}

.contact-info a:hover {
  color: var(--gold);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--gold);
}

.contact-map {
  height: 300px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}


.iti {
  width: 100%;
}


.footer {
  padding: 60px 0 20px;
  background-color: var(--dark-blue);
  color: var(--white);
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-links h5 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--light-blue);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--dark-blue);
}


.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 20px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 9999;
  display: none;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-settings-content {
  width: 100%;
  max-width: 600px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--emerald);
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--emerald);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}


.thank-you-section {
  padding: 150px 0;
  text-align: center;
}

.thank-you-section i {
  font-size: 5rem;
  color: var(--emerald);
  margin-bottom: 30px;
}


.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
}

.policy-content h2 {
  margin-top: 40px;
}

.policy-content h3 {
  margin-top: 30px;
}

.policy-content ul, 
.policy-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}


@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .diagonal-section {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .diagonal-section {
    padding: 60px 0;
  }
  
  .navbar-nav .nav-item {
    margin: 5px 0;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .diagonal-section {
    padding: 40px 0;
  }
}