
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
  /* Custom Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

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

        ::-webkit-scrollbar-thumb {
            background: rgba(102, 126, 234, 0.3);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(102, 126, 234, 0.6);
        }
html, body {
            font-family:Arial, Helvetica, sans-serif;
            max-width:100%;
            height:100%;
           
            

        }

footer {
  background:#060447 
}

.footer-items {
  font-size: 1rem;
  font-weight: 400;
}

.foot-cont {
  display: flex;
  gap: 2rem;
}

.foot-cont span {
  cursor: pointer;
  transition: color 0.3s ease;
}

.foot-cont span:hover {
  color: var(--orange-light);
}

/* Main Footer */
.main-footer {
  background: rgb(13, 4, 61);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.left-side {
  display: flex;
  flex-direction: column;
}

.footer-sections-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
 .contact-inf {
   
    background-color: #ffa200;
    padding: 30px;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-section h3 {
  color: orange-light;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid orange;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-section p,
.footer-section li {
  line-height: 1.8;
  margin-bottom: 0.8rem;
  color: beige;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: beige;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color:orange;
}

/* Links Section */
.links-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.section-title {
  color: #f9b233;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cards-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(138, 220, 220, 0.5);
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.link-card a{
  text-decoration: none;
  color:white;
}
.link-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
  border-color: orange;
}

.logo-wrap {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-text {
  flex: 1;
}

.card-title {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.card-sub {
  color: beige;
  font-size: 0.85rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: beige;
}



 .footer{
  background-color: #060447;
 }



 /* MOBILE VIEW (SHOW ONLY OUR TEAM & EXPLORE) */
@media (max-width: 768px) {

    /* Hide Contact Us section */
    .main-footer .contact-inf {
        display: none !important;
    }

    /* Hide Useful Links Cards (RIGHT SIDE) */
    .main-footer .links-section {
        display: none !important;
    }

    /* Show only Our Team & Explore */
    .main-footer .team,
    .main-footer .quick-links {
        display: block !important;
    }

    /* Make left-side full width on mobile */
    .main-footer .left-side {
        width: 100%;
    }

    /* Stack elements vertically */
    .main-footer .footer-sections-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Keep footer bottom always visible */
    .main-footer .footer-bottom {
        display: block !important;
        text-align: center;
        padding: 15px 10px;
    }
}


