

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  overflow-x: hidden;

  background: linear-gradient(
    180deg,
    #f9f9f9 0%,       /* light gray shimmer at the top */
    #57a8e1 25%,      /* very pale aqua blue */
    #2b7ead 55%,      /* soft light blue */
    #2a7dab 80%,      /* deeper water blue */
    #010f1b 100%      /* calm marine blue at the bottom */
  );


}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 40px;
}

.text-section {
  max-width: 50%;
  transform: translateX(-100%);
  opacity: 0;
  animation: slideInLeft 1s forwards;
}

.text-section h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 1.2rem;
  color: #555;
}

.image-section {
  max-width: 50%;
  transform: translateX(100%);
  opacity: 0;
  animation: slideInRight 1s forwards;
  animation-delay: 0.1s;
  min-width: 500px;
  z-index: 5;
  display: flex;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


.bg{
  background-color:black;
  width:1486px;
  height:1489px;

}

#contactheading{
  background-color:#ffffff;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 10;
 
}

.nav-desktop {
  display: flex;
  gap: 60px;
  margin:0px;
  padding: 0px;
  list-style: none;
  margin-right: 0px;
  justify-content: space-around;
}

.nav-desktop li a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 18px; /* increased size */
  padding: 10px 0;
  transition: color 0.3s ease;
}

.nav-desktop li a:hover {
  color: #0077ff;
}

/* Dropdown menu for mobile */
.nav-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 80px;
  right: 40px;
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 8px;
  list-style: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-menu.active {
  display: flex;
}

.nav-menu li {
  margin: 10px 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #0077ff;
}
/* 
.logo
{

  height: 60px;
  margin-left: -20px;
  width:166.85px;
} */


.logo img
{

  height: 60px;
  margin-left: -20px;
  width:166.85px;
}

.menu-toggle {
  font-size: 20px;
  font-weight: bold;
  cursor: default;
  background: #000;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  /* display: none; */
}


@media screen and (max-width: 768px) 
{
  .hero-text h2 {
    font-size: 16px;
    line-height: 1.4;
    max-width: 90%;
    word-break: keep-all;
    text-align: center;
  }
}

/* Footer Styling */
.site-footer {
  background-color: #000;
  color: #fff;
  font-family: 'Lexend', sans-serif;
  padding: 50px 20px 0;
  z-index: 1;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #444;
}

.footer-contact,
.footer-recognized {
  flex: 1 1 400px;
}

.footer-contact h3,
.footer-recognized h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer-contact h3 {
  text-align: center;
  width: 100%;
}


.footer-contact strong {
  color: #fff;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  color: #fff;
  margin-right: 15px;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #1da1f2;
  transform: scale(1.1);
}

/* Recognized Logos */
.footer-recognized {
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontally center both title and image */
  justify-content: center;
  text-align: center;
}


.recognized-single img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto; /* extra safeguard to center */
}



/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 20px 10px;
  color: #bbb;
}

.more-glories {
  padding: 60px 40px;
  background: transparent;
  text-align: center;
}

.more-glories h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.glory-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.glory-card {
  display: block;
  width: 250px;
  background: #fff;
  border-radius: 200px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  position: relative;
  border:none;
  z-index: 0;
  height:250px;
  padding: 10px 10px 10px 10px;
}

 @property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;

}
.glory-card::before {
  content: '';
  position: absolute;
  inset: 0; /* cover the whole card */
  
  padding: 0px; /* border thickness */
  /* border-radius: 12px; */
  background: conic-gradient(from var(--angle), #0077ff, #00e0ff, #0077ff);
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 7s linear infinite;
  z-index: -1; /* keep border behind content */
}

.glory-card::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 3px;
  /* border-radius: 12px; */
  background: conic-gradient(from var(--angle), #0077ff, #00e0ff, #0077ff);
  filter: blur(15px);
  animation: spin 4s linear infinite;
  z-index: -1;
} 

.glory-card::before {
  content: '';
  position: absolute;
  inset: 0; /* cover the whole card */
  padding: 0px; /* border thickness */
  background: conic-gradient(
    from var(--angle),
    #b39ddb,   /* lavender */
    #9575cd,   /* soft purple */
    #b39ddb    /* lavender again for looping */
  );
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 7s linear infinite;
  z-index: -1; /* keep border behind content */
}

.glory-card::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 3px;
  background: conic-gradient(
    from var(--angle),
    #b39ddb,
    #9575cd,
    #b39ddb
  );
  filter: blur(15px);
  animation: spin 4s linear infinite;
  z-index: -1;
}

.glory-card::before {
  content: '';
  position: absolute;
  inset: 0; /* cover the whole card */
  padding: 0px; /* border thickness */
  background: conic-gradient(
    from var(--angle),
    #d1c4e9,   /* light lavender */
    #b388eb,   /* light purple */
    #d1c4e9    /* repeat for looping */
  );
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 7s linear infinite;
  z-index: -1; /* keep border behind content */
}

.glory-card::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 3px;
  background: conic-gradient(
    from var(--angle),
    #d1c4e9,
    #b388eb,
    #d1c4e9
  );
  filter: blur(15px);
  animation: spin 4s linear infinite;
  z-index: -1;
}



keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle:360deg;
  }
}
.glory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle:360deg;
  }
}

.glory-card img {
  width: 100%;
  height: 230px;
  object-fit:inherit;
}

.glory-card h3 {
  padding: 15px;
  font-size: 1.2rem;
  /* font-weight: bold; */
}

.images{
   
  width: 250px;   /* stetches to full container width */
  height: 300px;  /* keeps proportions */
  object-fit: cover; /* fills container, may crop */
}


/* .glory-card::before,
.glory-card::after {
  content: '';
  position: absolute;
  inset: -4px; /* pushes animation behind, no border */
  /* background: conic-gradient(from var(--angle), #0077ff, #00e0ff, #0077ff);
  animation: spin 7s linear infinite;
  z-index: -1;
  border-radius: 14px; /* slightly bigger than card */
/* } */ 

/*
.glory-card::before,
.glory-card::after {
  content: '';
  position: absolute;
  inset: -3px; /* push outside card */
  /* background: conic-gradient(from var(--angle), #0077ff, #00e0ff, #0077ff);
  animation: spin 7s linear infinite;
  z-index: -1;
  border-radius: 12px; /* a bit larger than card */
  /* border:none;
}  */

/* Responsive layout for text + image */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;   /* stack vertically */
    padding: 20px;
  }

  .image-section {
    order: 1;                /* show image first */
    max-width: 100%;         
    min-width: auto;         /* remove the 500px lock */
    margin-bottom: 20px;
  }

  .text-section {
    order: 2;                /* text comes below image */
    max-width: 100%;         
    text-align: center;      /* optional: center text */
  }

  .text-section h1 {
    font-size: 2rem;
  }

  .text-section p {
    font-size: 1rem;
  }



@media (max-width: 768px) {
  .container {
    flex-direction: column-reverse; /* puts image above text */
    align-items: center;
    text-align: center;
    gap: 1rem; 
    padding: 20px;
  }

  .text-section {
    margin: 0;
  }

  .text-section h1 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }

  .text-section p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .image-section img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}


}


/* --- Responsive Navbar Update --- */

/* Always show hamburger */
.menu-toggle {
  
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  background-color: black;

}

/* Dropdown menu hidden by default */
.nav-menu {
  
  flex-direction: column;
  position: fixed;
  top: 70px;
  right: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.nav-menu.active {
  display: flex;
}

.nav-menu li {
  margin: 10px 0;
}

/* On mobile: hide desktop nav */
@media screen and (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
}


/* Hide desktop nav on small screens */
@media screen and (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* Default hide the mobile nav */
/* .nav-menu {
  display: none;
} */

/* Show when active */
.nav-menu.active {
  display: flex;
  flex-direction: column;
}


/* Bubble container (covers whole screen) */
.bubbles {
  position: fixed;
  inset: 0;                  /* top:0, right:0, bottom:0, left:0 */
  overflow: hidden;
  z-index: 0;                 /* behind content */
  pointer-events: none;       /* don't block clicks */
}

/* Bubble style */
.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
              rgba(255, 255, 255, 0.9) 0%,
              rgba(107, 159, 219, 0.2) 40%,
              rgba(9, 91, 164, 0.15) 100%);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
  animation: bubble-rise 12s linear infinite;
  opacity: 0.8;
}

/* Rising animation */
@keyframes bubble-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0.9; }
  80%  { opacity: 0.7; }
  100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

/* Different positions, sizes & speeds */
.bubble:nth-child(1) { left: 10%; width: 20px; height: 20px; animation-duration: 9s;  animation-delay: 0s; }
.bubble:nth-child(2) { left: 25%; width: 30px; height: 30px; animation-duration: 12s; animation-delay: 2s; }
.bubble:nth-child(3) { left: 40%; width: 15px; height: 15px; animation-duration: 8s;  animation-delay: 4s; }
.bubble:nth-child(4) { left: 55%; width: 35px; height: 35px; animation-duration: 14s; animation-delay: 1s; }
.bubble:nth-child(5) { left: 70%; width: 25px; height: 25px; animation-duration: 11s; animation-delay: 3s; }
.bubble:nth-child(6) { left: 85%; width: 40px; height: 40px; animation-duration: 15s; animation-delay: 5s; }
.bubble:nth-child(7) { left: 15%; width: 22px; height: 22px; animation-duration: 10s; animation-delay: 6s; }
.bubble:nth-child(8) { left: 45%; width: 28px; height: 28px; animation-duration: 13s; animation-delay: 7s; }
.bubble:nth-child(9) { left: 65%; width: 18px; height: 18px; animation-duration: 9s;  animation-delay: 8s; }
.bubble:nth-child(10){ left: 80%; width: 32px; height: 32px; animation-duration: 16s; animation-delay: 4s; }


/* Loader Overlay */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #010f1b; /* same as marine background bottom */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* always on top */
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Hide when done */
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid #4b9fda; /* marine blue highlight */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.underline-animate {
  position: relative;
  display: inline-block;
  font-weight: bold;
}

.underline-animate::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0077b6, #90e0ef);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.underline-animate:hover::after {
  transform: scaleX(1);
}



/* Hamburger button */
.menu-toggle {
  /* display: none; */
 
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  z-index: 1001;
  background-color: black;

    font-size: 20px;
  font-weight: bold;
  cursor: pointer;
 
  padding: 8px 16px;
  border-radius: 5px;
}

/* Dropdown menu - hidden by default */
.nav-menu {
 /* display: none; */
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 20px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* When active */
.nav-menu.active {
  display: flex;
}


/* Mobile layout fix */
@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px; /* consistent spacing */
  }

  .text-section, 
  .image-section {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .image-section img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .text-section h1 {
    margin-bottom: 10px;
  }

  .text-section p {
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 15px;
  }
}

/* Dropdown container */
.nav-desktop .dropdown {
  position: relative;
}

/* Hide dropdown menu by default */
.nav-desktop .dropdown-menu {
  /* display: none; */
  position: absolute;
  top: 100%;  /* show below parent */
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  min-width: 160px;
  z-index: 100;
}

/* Dropdown items */
.nav-desktop .dropdown-menu li {
  padding: 0;
}

.nav-desktop .dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-desktop .dropdown-menu li a:hover {
  background: rgba(0,119,255,0.1);
  color: #0077ff;
}

/* Show dropdown on hover */
.nav-desktop .dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
}
.dropdown.open .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;   /* mobile par dikhana */
    font-size: 20px;
    /* background: none; */
    /* border: none; */
    cursor: pointer;
    margin-right: -24px;
  }

  .nav-desktop {
    display: none;  
  }
}

