
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}
/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: white;
}

.logo img {
    height: 50px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar ul li a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 20px;
    
}
.cta-button {
    background: #2e8b57;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #256a45;
}

/* Hero Section */
.Two {
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
  font-size: 30px;
}

.Two-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  
}

.Two-text button {
  padding: 10px 25px;
  background-color: #2e7d32;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  padding: 50px;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  gap: 40px;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.about-text {
  max-width: 600px;
}

.about-text h3,
.about-text h2,
.about-text p {
  padding-left: 0; /* Remove hardcoded left padding */
}

.about-text h2 {
  font-size: 24px;
  color: #0d47a1;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2,
  .about-text h3,
  .about-text p {
    padding-left: 0;
  }
}

/* Core Values and Habits Section */
.drives-section {
  padding-top: 60px ;
  
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
 
  
}
.values-section {
  display: flex;
  flex-wrap: wrap;
  

}

.column {
  flex: 1;
  padding: 40px;
  color: #000;
}

.light-bg {
  background-color: #f5f5f5; /* Light gray */
}

.dark-bg {
  background-color: #e1e1e1; /* Slightly darker gray */
}

h3 {
  font-size: 20px;
  color: #2c2c5a;
}
p{
  font-size: 20px;
}

.spirit-list,
.habit-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.spirit-list li,
.habit-list li {
  margin: 12px 0;
  font-weight: bold;
}
.habit-list li {
  font-size: 30px;
}
.spirit-list li{
  font-size: 25px;
}




/*----vission mission values---*/
.vms-section {
  padding: 60px 20px;
  background-color: #f9fbff;
  text-align: center;
}

.vms-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 40px;
}

.vms-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.vms-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  flex: 1 1 300px;
  max-width: 360px;
  transition: transform 0.3s ease;
}

.vms-card:hover {
  transform: translateY(-5px);
}

.vms-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.vms-title {
  font-size: 22px;
  color: #e6b800;
  margin-bottom: 15px;
}

.vms-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
/*----Impact--*/
.impact-diversity {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 400px;
}

.impact-box {
  flex: 1;
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.impact {
  background-image: url('Ocea.jpg'); 
}

.diversity {
  background-image: url('Forest.jpg'); 
  
}

.overlay-text h2 {
  font-size: 50px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
}

.overlay-text span {
  font-weight: 700;
  display: inline-block;
}

.overlay-text p {
  font-size: 25px;
}

.learn-btn {
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.learn-btn:hover {
  background-color: #000;
  color: #fff;
}

/* Why Choose Uplinkbharat Section */
.why-uplinkbharat {
  background: #f2f8fc;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #0a1f44;
  margin-bottom: 40px;
  font-weight: 700;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 25px 20px;
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s ease;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  font-size: 28px;
  background-color: #ffe7d0;
  color: #ff6b00;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.why-text, .why-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.why-heading {
  font-size: 18px;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 8px;
}
/* Leadership, Partners, Investors Section */
.cards-section {
  padding: 60px 20px;
  background-color: #fff;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.info-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.read-more-btn {
  display: inline-block;
  margin: 15px 0 25px;
  padding: 10px 20px;
  font-size: 15px;
  color: white;
  background-color: #196bca;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.read-more-btn i {
  margin-right: 8px;
}

.read-more-btn:hover {
  background-color: #0f4c9b;
}

.info-card:hover {
  transform: translateY(-5px);
}




/* Footer */
/*footerstart*/
.footer {  
    background-color:black;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 40px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-logo {
    width: 40px;
    margin-bottom: 10px;
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a img {
    background: white;
    border-radius: 4px;
    padding: 5px;
    width: 30px;
    height: 30px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom hr {
    border: 0.5px solid #444;
    margin-bottom: 10px;
}

.footer-bottom p {
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
/*footer end*/
/* ---------- RESPONSIVE BREAKPOINTS ---------- */
.menu-toggle {
  display: none; 
  font-size: 28px;
  cursor: pointer;
  color: #333; 
}

/* Show menu icon on tablets and phones */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar ul {
    display: none; 
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px; 
    right: 20px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    margin: 10px 0;
  }
}
