/* General Styles */
body {
   

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  font-family: "Raleway", sans-serif;

  
  background-color: rgb(244,245,255);
 
}

a {
  text-decoration: none;
  color: inherit;
}


.navbar {
background-color: #fdfeff;
color: rgb(5, 5, 5);
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 999;
}

.navbar .logo {
font-size: 1.5rem;
font-weight: bold;
}

.navbar ul {
list-style: none;
display: flex;
align-items: center;
gap: 1.5rem;
}

.navbar ul li {
position: relative;
}

.navbar ul li a {
color: #060606;
text-decoration: none;
padding: 0.5rem 1rem;
display: block;
transition: color 0.3s ease;
font-weight: 400;
font-size: large;
font-family: "Raleway", sans-serif;

}

.navbar ul li a:hover {
color: #e87a05;
}

/* Add caret to dropdown */
.navbar ul li.dropdown > a::after {
content: '\f0d7'; /* Font Awesome down arrow (caret) */
font-family: 'Font Awesome 5 Free';
font-weight: 900;
margin-left: 0.5rem;
}

.navbar ul li ul {
position: absolute;
top: 100%;
left: 0;
background-color: #fbfcfd;
display: none;
list-style: none;
z-index: 998;
}

.navbar ul li:hover ul {
display: block;
}

.navbar ul li ul li a {
padding: 0.5rem 1rem;
width: 200px;
text-align: left;
}

.menu-toggle {
display: none;
font-size: 1.5rem;
cursor: pointer;
color: rgb(12, 12, 12);
}

@media (max-width: 768px) {
.navbar ul {
    flex-direction: column; /* Keep this to stack items vertically */
    position: absolute;
    top: 70%;
    left: 0;
    background-color: #fdfefe;
    color: #000;
    width: 100%;
    font-size: large;
    display: none;
    z-index: 100;
    padding: 1rem 0; /* Add padding for better spacing */
}

.navbar ul.active {
    display: flex;
    flex-direction: column; /* Ensure items stack vertically */
    align-items: flex-start; /* Align items to the left */
}

.navbar ul li {
    width: 100%; /* Make each item full width */
}

.navbar ul li a {
    width: 100%; /* Make links full width for easier clicking */
    text-align: left; /* Align text to the left */
}

.navbar ul li ul {
    position: static; /* Ensure dropdowns are aligned properly */
}

.navbar ul li ul li a {
    padding: 0.5rem 1rem; /* Keep padding for dropdowns */
}

.menu-toggle {
    display: block;
}
}



.section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f50;
  padding: 10px;
}
.text {
  color: white;
  font-size: 20px;
  margin-right: 20px;
}
.button {
  background-color: white;
  color: #f50;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #ff7043;
}
@media (max-width: 600px) {
  .text {
      font-size: 16px;
  }
  .button {
      font-size: 16px;
      padding: 8px 16px;
  }
}

/* Navbar Styles */

/* Hero Section Styles */

.hero-section {
  position: relative;
 min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Green overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(7,90,246, 0.7); /* Semi-transparent green overlay */
  z-index: 0;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 1rem;

  font-family: "Raleway", sans-serif;

}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: "Raleway", sans-serif;

}

.btn {
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #ff6347;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ff4500;
}

/* Responsive Design */

@media (max-width: 768px) {
.hero-section{
  min-height: 50vh;
}
  .hero-content h1 {
      font-size: 3rem;
  }

  .hero-content p {
      font-size: 1.2rem;
  }

  .btn {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {

.hero-section{
  min-height: 50vh;
}
  .hero-content h1 {
      font-size: 2rem;
  }

  .hero-content p {
      font-size: 1rem;
  }

  .btn {
      font-size: 0.8rem;
      padding: 8px 16px;
  }
}




@keyframes fadeIn {
  to {
      opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  
  .hero-content h1 {
      transform: translateY(-20px);
      font-size: 2.5em;
  }
  .hero-content p {
      transform: translateY(-20px);
      font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .hero{
      height: 30vh;
  }
  .hero-content h1 {
      transform: translateY(-40px);
      font-size: 2em;
  }
  .hero-content p {
      transform: translateY(-40px);
      font-size: 1.1em;
  }
  .hero-content button {
      transform: translateY(-40px);
      padding: 10px 25px;
      font-size: 1em;
  }
}

@media (max-width: 480px) {
  
  .hero-content h1 {
      font-size: 1.8em;
  }
  .hero-content p {
      font-size: 1em;
  }
  .hero-content button {
      padding: 8px 20px;
      font-size: 0.9em;
  }
}











/* Responsive Styles */

/* Animation Styles */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

/* Responsive Styles */

/* Tablets (Portrait, 768px and up) */
/* Tablets (Portrait, 768px and up) */
@media (max-width: 768px) {
  
  *, *::before, *::after {
      box-sizing: border-box;
    } /* for removing sidebar scrolling*/
  

}
/* Mobile Devices (Portrait, 480px and up) */
@media (max-width: 480px) {
  *, *::before, *::after {
      box-sizing: border-box;
    } /* for removing sidebar scrolling*/

  .hero{
      margin-bottom: 270px;
  }
  .hero-section{
      height: 30vh;
      display: flex;  
      flex-direction: column;  
      justify-content: flex-start;
     
  }

  .hero h1 {
      font-size: 2rem;
  }

  .hero p {
      font-size: 0.9rem;
  }

  .hero-content {
      margin-top: 150px;
  }

  .cta-button {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
  }

  .hero-image {
      height: 200px;
  }
  .a{
      margin-top: 40px;
  }}










  .global-connect-section {
    width: 100%;
    max-width: 805px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    color: rgb(254, 74, 10);
    font-size: 36px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    opacity: 0; /* Initially hidden */
    animation: fadeIn 2s ease-in-out forwards; /* Animation added */
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px); /* Optional: small upward slide effect */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* End position */
    }
  }
  
  @media (max-width: 1200px) {
    .global-connect-section {
      font-size: 22px;
    }
  }
  
  @media (max-width: 992px) {
    .global-connect-section {
      font-size: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .global-connect-section {
      font-size: 18px;
    }
  }
  
  @media (max-width: 576px) {
    .global-connect-section {
      font-size: 16px;
      padding: 10px;
    }
  }
  
/* General styles */
.section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  width: 80%;
  margin: 50px auto;
  background-color: white;
  flex-wrap: wrap; /* Enable wrapping for responsiveness */
}

/* Text Content */
.text-content {
  flex: 1 1 50%;
  max-width: 600px;
  padding-right: 20px;
}

.heading {
  font-size: 2.5rem;
  font-weight: 700;
  color:rgb(254, 74, 10);
  margin-bottom: 20px;
  line-height: 1.3;
}

.description {
  font-size: 1.5em;
  color: rgb(254, 74, 10);
  font-weight: 700;
  margin-bottom: 30px;
}

.bullet-list {
  list-style-type: none; /* Remove default list styling */
  padding-left: 0;
}

.bullet-list li {
  font-size: 1.4em;
  color: black;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

/* Custom Bullet Points */
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: rgb(254, 74, 10);
  border-radius: 50%;
}

/* Image Content */
.image-content {
  flex: 1 1 40%;
  text-align: center;
}

.responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsiveness */

/* Tablet and iPad */
@media (max-width: 1024px) {
  .heading {
    font-size: 2.2rem;
  }

  .description {
    font-size: 1.1rem;
  }

  .bullet-list li {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-left: 40px;
  }

  .section-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-content {
    order: 2;
    width: 100%;
    padding: 0 20px;
    text-align: left;
  }

  .image-content {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .section-container {
    padding: 20px;
  }

  .heading {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .bullet-list li {
    font-size: 1rem;
    margin-bottom: 25px;
    padding-left: 45px;
  }

  .bullet-list li::before {
    left: 15px;
  }
}

/* Smaller Mobile Phones */
@media (max-width: 480px) {
  .heading {
    font-size: 1.8rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .bullet-list li {
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-left: 50px;
  }

  .bullet-list li::before {
    left: 10px;
    height: 12px;
    width: 12px;
  }
}





.satellite-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 84%;
  margin: 100px auto;
  padding: 20px;
  background-color: white;

  
}

.image-section {
  width: 40%;
  padding-right: 20px;
}

.image-section img {
  width: 100%;
  border-radius: 10px;
}

.list-section {
  width: 55%;
}
.list-section p{
  font-size: 1.5em ;
  font-weight: 600;
  color: rgb(254,74,10);
}

.list-section ul {
  list-style: none;
}

.list-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.list-section ul li::before {
  content: '\f00c'; /* Font Awesome checkmark */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: rgb(78,90,246);
  font-size: 1.3em;
}

.divider {
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .satellite-container {
      flex-direction: column;
      width: 90%;
  }

  .image-section, .list-section {
      width: 100%;
      padding-right: 0;
  }

  .list-section ul li {
      font-size: 1em;
  }
}

@media (max-width: 480px) {
  .satellite-container {
      width: 100%;
      padding: 10px;
  }

  .list-section ul li {
      font-size: 0.9em;
  }
}