@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*font-family: "Montserrat", sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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');

/*font-family: "Poppins", sans-serif;*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background-color: #f1f1f1;
  
}
@font-face {
    font-family: 'Futura';
    src: url(fonts/Futura.ttf);
}

@font-face {
    font-family: 'Kugile';
    src: url(fonts/Kugile.ttf);
}

.container {
    width: 100%;
    height: 100%;
}

.nav {
  width: 55%;
  height: 55px;
  background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    margin-top: 20px;
  margin-bottom: 30px;
    border-radius: 60px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.2);
  position: fixed;
}

.logo {
    width: 40%;
    height: 100%;
    display: flex;
    padding: 10px 10px;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
  padding-left: 40px;
}

.logo img {
  width: 55px;
  height: 45px;
}

.menu {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu ul {
    display: flex;
   justify-content: center;
    align-items: center;
}

.menu ul li {
    list-style: none;
  padding: 10px 8px;
  font-size: 15px;
    color: #000;
  font-family: 'Poppins', sans-serif;
}

.menu ul li a {
    text-decoration: none;
    color: #000;
    border-radius: 10px;  
  position: relative;
  transition: color 0.2s;
}

.menu ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #1A76D1;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.menu ul li a:hover {
  color: #1A76D1;
}

.menu ul li a:hover::after {
  width: 100%;
}



.hero {
    margin-top: 35px;
  margin-bottom: 30px;
  width: 90%;
    height: 100%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
    border-radius: 60px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.2);
}

.hero-content {
    width: 90%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
    margin-top: 20px;
    text-align: center;
  padding: 30px 5px;
}

.hero-content h1 {
  font-size: 3.5vw;
  padding-top: 15px;
    font-weight: bold;
    color: #000;
    font-family: 'Kugile';
}

.hero-content h1 span {
  color: #1A76D1;
}

.hero-content p {
  margin-top: 20px;
  font-size: 1.4vw;
  color: #000;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  opacity: 0.7;
}

.hero-content p span {
    color: #1A76D1;
}

.custom-marquee {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin: 0 auto 40px auto;
  padding: 10px 0;
  position: relative;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
  align-items: center;
  gap: 60px;
}

.custom-marquee span {
  color: #000;
  font-family: 'Futura', Arial, sans-serif;
  font-size: 1.rem;
  letter-spacing: 1px;
  white-space: nowrap;
  position: relative;
  padding: 0 28px;
}

.custom-marquee span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  width: 1px;
  background: #0002;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.section {
  width: 90%;
  height: 20vw;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  background-color: #fff;
}

.sec-content {
  text-align: center;
  padding: 0 4vw;
}

.sec-content h1 {
  font-family: 'kugile';
  padding-top: 20px;
  font-size: 3vw;
  color: #1A76D1;
}

.sec-content h3 {
  font-family: 'futura';
  font-weight: 300;
  font-size: 1.7vw;
  font-weight: 300;
}

.btn {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 3vw;
}

.btn a {
  display: inline-block;
  text-decoration: none;
  color: #000 !important;
  background-color: #fff;
  font-weight: 400;
  font-family: 'Poppins',sans-serif;
  font-size: 1.1rem;
  padding: 16px 38px;
  border-radius: 60px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.2);
  border: none;
  transition: background 0.25s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.btn a:hover, .btn a:focus {
  background: #000;
  color: #fff !important;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px) scale(1.04);
}

/* Sticky Navbar */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Hamburger menu styles (hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 3px 0;
  margin-right: -3vw;
  background: #000;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 70vw;
  max-width: 320px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1050;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 24px 24px 24px;
  box-shadow: -4px 0 24px 0 #0002;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.mobile-menu.open {
  display: flex;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close button for mobile menu */
.close-menu {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1A76D1;
  cursor: pointer;
  z-index: 1101;
  padding: 0 8px;
  line-height: 1;
  transition: color 0.2s;
}
.close-menu:hover {
  color: #000;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 48px 0 0 0;
  width: 100%;
  text-align: left;
}

.mobile-menu ul li {
  margin: 18px 0;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.mobile-menu ul li:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu ul li:nth-child(2) {
  animation-delay: 0.2s;
}

.mobile-menu ul li:nth-child(3) {
  animation-delay: 0.3s;
}

.mobile-menu ul li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu ul li a {
  font-size: 1.15rem;
  color: #000;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
  position: relative;
  padding: 8px 0 8px 8px;
  display: block;
  border-radius: 8px;
}

.mobile-menu ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #1A76D1;
  transition: width 0.3s;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
}

.mobile-menu ul li a:hover {
  color: #1A76D1;
}

.mobile-menu ul li a:hover::after {
  width: 100%;
}

.mobile-menu ul li a strong {
  color: #1A76D1;
}

/* Hide desktop menu on mobile */
@media (max-width: 990px) {
  .nav {
    width: 92vw;
    min-width: unset;
    height: 60px;
    padding: 0 10px;
    border-radius: 30vw;
    margin-left: auto;
    margin-right: auto;
  }

  .logo {
    font-size: 20px;
    padding-left: 10px;
  }

  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Responsive hero section */
@media (max-width: 990px) {
  .hero {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    padding: 10px 0;
  }

  .hero-content {
    width: 98%;
    /* margin-left: 1%; */
    padding: 2vh 4vw;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    padding-top: 10px;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

/* Section and button responsiveness */
@media (max-width: 990px) {
  .section {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    height: auto;
    padding: 20px 0;
  }

  .sec-content h1 {
    font-size: 2rem;
    padding-top: 10px;
  }

  .sec-content h3 {
    font-size: 1rem;
  }

  .btn {
    flex-direction: column;
    gap: 12px;
    padding: 2vw 2vw;
    margin: 2vw 8vw;
  }

  .btn a {
    width: 90%;
    padding: 14px 0;
    font-size: 1rem;
  }
}

/* Marquee responsiveness */
@media (max-width: 990px) {
  .custom-marquee {
    padding: 6px 0;
    margin-bottom: 24px;
  }

  .custom-marquee span {
    font-size: 1rem;
    padding: 0 12px;
  }

  .marquee-inner {
    gap: 30px;
  }
}

/* Tablet and small screen adjustments */
@media (max-width: 740px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 620px) {
  .nav {
    height: 50px;
    border-radius: 18px;
  }

  .logo {
    font-size: 1rem;
    padding-left: 5px;
  }

  .hero {
    border-radius: 18px;
    padding: 4px 0;
  }

  .section {
    border-radius: 18px;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.1rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .btn a {
    font-size: 0.9rem;
    padding: 10px 0;
  }
}

@media (max-width: 350px) {
  .hero-content h1 {
    font-size: 0.8rem;
  }
}

/* Ensure no element overflows horizontally */
html,
body,
.container,
.nav,
.hero,
.section {
  max-width: 100vw;
  box-sizing: border-box;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.orbit-preloader {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-center {
  width: 22px;
  height: 22px;
  background: #1A76D1;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px #1A76D1aa;
}

.orbit-ring {
  width: 70px;
  height: 70px;
  border: 3px solid #1A76D1;
  border-radius: 50%;
  opacity: 0.3;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-dot {
  width: 16px;
  height: 16px;
  background: #1A76D1;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg) translate(35px, 0);
  box-shadow: 0 0 8px #1A76D1;
  animation: orbit-rotate 1.1s linear infinite;
}

@keyframes orbit-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translate(35px, 0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translate(35px, 0);
  }
}

/* Web Card Styles */
.web-card {
  background: rgba(20, 20, 25, 0.92);
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 #0006;
  padding: 36px 32px 32px 32px;
  max-width: 540px;
  margin: 40px auto;
  color: #fff;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.08);
  font-family: 'Poppins', Arial, sans-serif;
}

.web-card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.web-card-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: left;
}

.web-card-desc {
  font-size: 1.13rem;
  line-height: 1.7;
  color: #eaeaea;
  margin-bottom: 32px;
  text-align: left;
}

.web-card-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #181818;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 14px 32px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 #0002;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.web-card-btn:hover {
  background: #1A76D1;
  color: #fff;
  box-shadow: 0 4px 24px 0 #1A76D1aa;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Services Section Styles */
.services {
  width: 90%;
  height: 100%;
  margin-left: 5%;
  margin-bottom: 30px;
  border-radius: 60px;
  box-shadow: 5px 15px 20px rgba(0,0,0,0.2);
  text-align: center;
  background-color: #fff;
  padding: 20px;
}

.services h2 {
  color: #1A76D1;
  padding-top: 15px;
  font-family: 'kugile';
  font-size: 3.5vw;
}

.services p {
  font-family: 'Poppins',sans-serif;
  font-size: 1.2vw; 
  padding: 15px 50px;
  line-height: 1.6;
}

.services h3 {
  color: #1A76D1;
  font-family: 'kugile';
  font-size: 2.5vw;
  padding: 10px 0;
}

.services ul li {
  list-style: none;
  font-family: 'futura';
  font-size: 1.4vw;
  margin: 8px 0;
}

/* About Section Styles */
.about {
  width: 90%;
  height: 100%;
  margin-left: 5%;
  margin-bottom: 30px;
  border-radius: 60px;
  box-shadow: 5px 15px 20px rgba(0,0,0,0.2);
  text-align: center;
  background-color: #fff;
  padding: 20px;
}

.about h2 {
  color: #1A76D1;
  padding-top: 15px;
  font-family: 'kugile';
  font-size: 3.5vw;
}

.about p {
  font-family: 'Poppins',sans-serif;
  font-size: 1.2vw; 
  padding: 15px 50px;
  line-height: 1.6;
}

.about h3 {
  color: #1A76D1;
  font-family: 'kugile';
  font-size: 2.5vw;
  padding: 10px 0;
}

.about ul li {
  list-style: none;
  font-family: 'futura';
  font-size: 1.4vw;
  margin: 8px 0;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section Styles */
.contact-section {
  max-width: 90%;
  margin-left: 5%;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 20px 15px 15px 15px;
  border-radius: 18px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  box-shadow: 5px 15px 20px rgba(0,0,0,0.2);
}

.contact {
  width: 35%;
  height: 100%;
}

.cont-logo {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5vw;
  margin-bottom: 3vh;
}

.cont-logo img {
  width: 50vw;
  height: 40vh;
  object-fit: contain;
}

.contact-title {
  font-size: 2rem;
  font-family: 'kugile';
  font-weight: 800;
  margin-bottom: 20px;
  color: #1A76D1;
  letter-spacing: -2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 3px solid #444652;
  border-radius: 16px;
  padding: 12px 15px;
  color: #000;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  outline: none;
  transition: border 0.2s;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1A76D1;
}

.contact-form textarea {
  min-height: 80px;
  max-height: 180px;
}

.contact-form button {
  margin-top: 8px;
  background: #0b1623;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 18px;
  padding: 12px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.contact-form button:hover {
  background: #1a2230;
  color: #3ec6ff;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
}

.contact-form .arrow {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}

.contact-form button:hover .arrow {
  color: #3ec6ff;
}

/* Active navigation highlighting */
.menu ul li a.active {
    color: #1A76D1;
}

.menu ul li a.active::after {
  width: 100%;
}




@media (max-width: 480px) {
  .services, .about {
    width: 100%;
    overflow-x: hidden;
    border-radius: 20px;
    padding: 2vh 4vw;
    margin: 1vh 6vw;
  }
  .services h2, .about h2 {
    font-size: 1.5rem;
  }
  .services h3, .about h3 {
    font-size: 1.2rem;
  }
  .services p, .about p {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  .services ul li, .about ul li {
    font-size: 0.9rem;
  }
  .contact-section {
    max-width: 98%;
    margin-left: 1%;
    padding: 10px;
  }
  .contact-title {
    font-size: 1.2rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.8rem;
    padding: 8px 8px;
  }
  .contact-form button {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

/* Tablet and below */
@media (max-width: 990px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 20px 5vw;
    margin: 0 4vw;
  }
  .cont-logo {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-bottom: 2vh;
  }
  .cont-logo img {
    width: 120px;
    height: auto;
    max-width: 40vw;
    margin: 0 auto;
    display: block;
  }
  .contact {
    width: 100%;
    margin-top: 10px;
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  .contact-section {
    padding: 12px 4vw;
    border-radius: 18px;
    margin-bottom: 2vh;
  }
  .cont-logo img {
    width: 90px;
    max-width: 60vw;
  }
}

@media (max-width: 990px) {
  /* Buttons section: stack vertically, full width */
  .btn {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
  .btn a {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 16px 0;
  }
  /* Marquee: smaller font, less gap */
  .custom-marquee {
    margin: 0 auto 24px auto;
    padding: 6px 0;
  }
  .marquee-inner {
    gap: 24px;
  }
  .custom-marquee span {
    font-size: 0.95rem;
    padding: 0 12px;
  }

  /* Headings/text */
  .hero-content h1, .sec-content h1, .services h2, .about h2, .contact-title {
    font-size: 2rem;
  }
  .sec-content h3, .services h3, .about h3 {
    font-size: 1.1rem;
  }
  .hero-content p, .services p, .about p, .about ul li, .services ul li {
    font-size: 0.98rem;
  }
}

@media (max-width: 600px) {
  .btn a {
    font-size: 1rem;
    padding: 12px 0;
  }
  .marquee-inner {
    gap: 12px;
  }
  .custom-marquee span {
    font-size: 0.85rem;
    padding: 0 6px;
  }
  .hero-content h1, .sec-content h1, .services h2, .about h2, .contact-title {
    font-size: 1.2rem;
  }
  .sec-content h3, .services h3, .about h3 {
    font-size: 0.95rem;
  }
  .hero-content p, .services p, .about p, .about ul li, .services ul li {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .btn a {
    font-size: 0.95rem;
    padding: 10px 0;
  }
  .custom-marquee span {
    font-size: 0.75rem;
    padding: 0 3px;
  }
  .hero-content h1, .sec-content h1, .services h2, .about h2, .contact-title {
    font-size: 1rem;
  }
  .sec-content h3, .services h3, .about h3 {
    font-size: 0.85rem;
  }
  .hero-content p, .services p, .about p, .about ul li, .services ul li {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .services, .about {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3vh;
    box-sizing: border-box;
    overflow-x: hidden;
    border-radius: 16px;
    padding: 2vh 3vw;
  }
}

@media (max-width: 600px) {
  .nav {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50vw;
    min-width: unset;
    height: 54px;
    padding: 0 8px;
  }
}

@media (max-width: 770px) {
  .art-sec {
    flex-direction: column !important;
    gap: 18px;
    padding: 10px 0 !important;
    align-items: center !important;
  }
  .card {
    width: 88vw !important;
    min-width: 0 !important;
    max-width: 98vw !important;
    height: auto !important;
    margin-bottom: 10px;
    border-radius: 18px !important;
    padding: 14px 12px !important;
    box-sizing: border-box !important;
  }
  .card img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain;
    margin: 0 !important;
    border-radius: 10px !important;
  }
  .art{
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
  }
  .art-content {
    padding: 4vh 4vw !important;
  }
  .art-content h2 {
    font-size: 1.8rem !important;
  }
  .art-content p {
    font-size: 0.95rem !important;
    padding: 0 !important;
  }
}


@media (max-width: 600px) {
  .art-sec {
    flex-direction: column !important;
    gap: 18px;
    padding: 10px 0 !important;
    align-items: center !important;
  }
  .card {
    width: 88vw !important;
    min-width: 0 !important;
    max-width: 98vw !important;
    height: auto !important;
    margin-bottom: 10px;
    border-radius: 18px !important;
    padding: 14px 12px !important;
    box-sizing: border-box !important;
  }
  .card img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain;
    margin: 0 !important;
    border-radius: 10px !important;
  }
  .art{
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
  }
  .art-content {
    padding: 4vh 4vw !important;
  }
  .art-content h2 {
    font-size: 1.8rem !important;
  }
  .art-content p {
    font-size: 0.95rem !important;
    padding: 0 !important;
  }
}



@media (max-width: 600px) {
  .mobile-menu {
    width: 60vw;
    max-width: 240px;
    padding: 24px 10px 10px 10px;
  }
  .mobile-menu ul li a {
    font-size: 1rem;
    padding: 6px 0 6px 6px;
  }
}
.footer {
  background-color: #bfbdbd;
  color: #000000;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: "futura";
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo/Brand */
.footer-logo {
  display: inline-block;
  margin-bottom: 30px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* Navigation Menu */
.footer-nav {
  margin-bottom: 30px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-nav a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #1A76D1;
}

/* Social Media Icons */
.social-icons {
  margin-bottom: 30px;
}

.social-icons a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background-color: #444;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  margin: 0 10px;
  line-height: 45px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #1A76D1;
  transform: translateY(-3px);
}

/* Copyright */
.footer-copyright {
  color: #888;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-copyright a {
  color: #4CAF50;
  text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .footer-nav ul {
      flex-direction: column;
      gap: 15px;
  }

  .footer-nav a {
      font-size: 14px;
  }

  .footer-logo img {
      height: 40px;
      max-width: 160px;
  }

  .footer-logo {
      margin-bottom: 25px;
  }

  .social-icons a {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 16px;
      margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 30px 15px 15px;
  }

  .footer-nav ul {
      gap: 10px;
  }

  .footer-nav a {
      font-size: 12px;
  }

  .footer-logo img {
      height: 35px;
      max-width: 140px;
  }

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

  .social-icons {
      margin-bottom: 20px;
  }

  .footer-copyright {
      font-size: 12px;
  }
}
