:root {
  --main-color: #3795BD; /* Green color */
  --contact-color: #ff2d11;
  --social-media: #1b8bf4;
  --nav-bg:#ffffff;
  --button:#4E31AA;
  --button-hover:#3A1078;
  --main-bg:linear-gradient(135deg, #457b9d, #1d3557);
  --black:black;
}

/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}


/* HEADER */
header {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 40px;
  margin-top: 65px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 100%;
}

.contact-info > a {
  color: black;
  text-decoration: none;
}

.contact-info > a > i {
  color: var(--contact-color);
}

.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.social-media > a {
  text-decoration: none;
  font-size: 24px;
}

.fa-facebook {
  color: #1877F2;
}

.fa-youtube {
  color: #FF0000;
}

.fa-instagram {
  color: #F33A6A;
}

.fa-whatsapp {
  color: #25D366;
}

/* contact section */
.unique-contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.unique-contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  flex-direction: column;
  padding-top: 30px;
}

.contact-left {
  color: white;
  padding: 40px;
  display: flex;
  margin: 20px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  max-width: 600px;
  background: linear-gradient(135deg, #1d3557, #457b9d);
}

.contact-left h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 18px;
  line-height: 1.6;
}

.contact-right {
  flex: 2;
  padding: 40px;
  display: flex;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-box {
  height: 60px;
  width: 60px;
  background: linear-gradient(135deg, #457b9d, #1d3557);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.details h3 {
  font-size: 20px;
  color: #1d3557;
  margin: 0 0 5px;
}

.details p {
  font-size: 16px;
  color: #6c757d;
  margin: 2px 0;
}

/* Mobile-Specific Design (Only for screens smaller than 768px) */
@media (max-width: 768px) {
  .unique-contact-section {
    padding: 40px 10px; /* Reduced padding for mobile */
  }

  .unique-contact-wrapper {
    padding-top: 20px; /* Reduced padding for mobile */
  }

  .contact-left {
    padding: 20px; /* Reduced padding for mobile */
    max-width: 100%; /* Full width on mobile */
  }

  .contact-left h1 {
    font-size: 28px; /* Slightly smaller font size for mobile */
    margin-bottom: 15px; /* Reduced margin for mobile */
  }

  .contact-left p {
    font-size: 16px; /* Slightly smaller font size for mobile */
  }

  .contact-right {
    padding: 20px; /* Reduced padding for mobile */
    flex-direction: column; /* Stack items vertically on mobile */
    gap: 20px; /* Reduced gap for mobile */
  }

  .contact-item {
    gap: 15px; /* Reduced gap for mobile */
  }

  .icon-box {
    height: 50px; /* Smaller icon box for mobile */
    width: 50px; /* Smaller icon box for mobile */
    font-size: 24px; /* Smaller icon size for mobile */
  }

  .details h3 {
    font-size: 18px; /* Smaller heading size for mobile */
  }

  .details p {
    font-size: 14px; /* Smaller text size for mobile */
  }
}

/* Further adjustments for very small devices (optional) */
@media (max-width: 480px) {
  .unique-contact-section {
    padding: 20px 10px; /* Further reduced padding for very small devices */
  }

  .contact-left h1 {
    font-size: 24px; /* Further reduced font size for very small devices */
  }

  .contact-left p {
    font-size: 14px; /* Further reduced font size for very small devices */
  }

  .icon-box {
    height: 40px; /* Further reduced icon box size for very small devices */
    width: 40px; /* Further reduced icon box size for very small devices */
    font-size: 20px; /* Further reduced icon size for very small devices */
  }

  .details h3 {
    font-size: 16px; /* Further reduced heading size for very small devices */
  }

  .details p {
    font-size: 12px; /* Further reduced text size for very small devices */
  }
}


/* Footer section */

.site-footer {
  background-color: var(--main-color);
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  margin: 0;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #007bff;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.social-media-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-media-links .social-icon {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.social-media-links .social-icon:hover {
  color: #007bff; /* Change to your preferred hover color */
  transform: scale(1.2); /* Slight scaling effect on hover */
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #444;
  font-size: 14px;
}
.footer-links ul li a {
  text-decoration: none;
  color: #ffffff; 
  transition: color 0.3s ease-in-out; 
}

.footer-links ul li a:hover {
  color: var(--button-hover); 
}
.designer{
  text-decoration: none;
  color: white;
}
.designer:hover{
  color: rgb(255, 0, 0);
}
