
    
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", sans-serif;
}
body {
    background: linear-gradient(135deg, #000000, #032057);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 200, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 200, 0, 0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 200, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 200, 0, 0.6);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.fade-in-down {
  animation: fadeInDown 0.8s ease-out;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

.animate-spin-slow {
  animation: spin 20s linear infinite;
}

.pulse {
  animation: pulse 2s infinite;
}

/* HEADER */
header {
    color: white;
    padding: 30px 10%;
    text-align: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(3, 32, 87, 0.3));
    border-bottom: 3px solid rgba(255, 200, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    animation: glow 3s ease-in-out infinite;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

header p {
    opacity: 0.9;
    margin: 8px 0 15px;
    font-weight: 300;
    font-size: 1.1rem;
    color: #b3b3b3;
}


    

 
    

.nav1 {
    display: flex;
    justify-content: center;
    gap: 2px;
    padding: 15px 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(3, 32, 87, 0.5));
    border-bottom: 2px solid rgba(255, 200, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav1 a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.nav1 a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav1 a:hover {
    background: white;
    color: #032057;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.4);
    border-color: #ffc800;
}

.nav1 a:hover::before {
    left: 100%;
}


.hero {
    padding: 100px 10%;
    text-align: center;
    color: white;
    background: linear-gradient(180deg, rgba(3, 32, 87, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 40px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffc800, #ffed4e, #ffc800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #b3e5fc;
    text-shadow: 0 0 20px rgba(179, 229, 252, 0.4);
    font-weight: 600;
}

.hero-desc {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
    color: #d0d0d0;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #ffc800, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 200, 0, 0.4);
    border: 2px solid #ffc800;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 200, 0, 0.6);
    background: white;
}


.section {
    padding: 60px 10%;
    text-align: center;
    display: block;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
    background: linear-gradient(135deg, #ffc800, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800 !important;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #b3b3b3;
    font-weight: 300;
    margin-top: 10px;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #d2dbdf;
    font-family: "Poppins", cursive;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.card-wrapper {
    flex: 0 1 calc(33.333% - 17px);
    min-width: 250px;
}

.card {
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-weight: 600;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 0, 0.2), transparent);
    transition: left 0.6s;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.card-link {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    background: linear-gradient(135deg, #ffc800, #ffed4e);
    color: #000;
    box-shadow: 0 20px 50px rgba(255, 200, 0, 0.3);
    border-color: #ffc800;
}

.card:hover::before {
    left: 100%;
}


.section.dark {
    background: linear-gradient(135deg, #0a1015, #1a2a3a);
    color: white;
    border-top: 3px solid rgba(255, 200, 0, 0.2);
}

.section.dark h2 {
    color: white;
}

.why-section {
    padding: 80px 10% !important;
}

.why-title {
    font-size: 2.5rem !important;
    margin-bottom: 50px !important;
    background: linear-gradient(135deg, #ffc800, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 200, 0, 0.05));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 200, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.why-item:hover {
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.2), rgba(255, 200, 0, 0.1));
    border-color: #ffc800;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 200, 0, 0.2);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.why-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffc800;
}

.why-item p {
    font-size: 1rem;
    color: #b3b3b3;
    font-weight: 300;
}

/* CONTACT FORM */
form {
    max-width: 500px;
    width: 100%;
    margin: 40px auto;
    display: flex;
    border-radius: 20px;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    gap: 15px;
    background: linear-gradient(135deg, rgba(5, 21, 49, 0.9), rgba(10, 20, 40, 0.9));
    padding: 30px;
    border: 2px solid rgba(255, 200, 0, 0.2);
}

input, textarea {
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #ffc800;
    box-shadow: 0 0 15px rgba(255, 200, 0, 0.3);
    background: white;
}

textarea {
    resize: none;
    height: 120px;
}

.sub {
    border-radius: 12px;
    width: 100%;
    padding: 14px;
    cursor: pointer;
    background: linear-gradient(135deg, #ffc800, #ffed4e);
    color: #000;
    border: 2px solid #ffc800;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub:hover {
    background: white;
    color: #ffc800;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 200, 0, 0.4);
}

.sub:active {
    transform: translateY(-1px);
}


#topBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    background: #2c5364;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

#topBtn:hover {
    background: #667eea;
    transform: translateY(-5px);
}


footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    color: #fff;
    text-align: center;
    padding: 50px 10%;
    margin-top: 80px;
    border-top: 3px solid rgba(255, 200, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffc800;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffc800;
    transform: translateX(5px);
}
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-container img {
    width: 100px;   
    height: auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-container h1 {
    font-size: 2.5rem;
    margin: 0;
    animation: glow 3s ease-in-out infinite;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.2), rgba(255, 200, 0, 0.1));
    border: 2px solid rgba(255, 200, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 0, 0.5), transparent);
    transition: left 0.5s;
}

.social-link:hover {
    background: linear-gradient(135deg, #ffc800, #ffed4e);
    border-color: #ffc800;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 200, 0, 0.4);
}

.social-link:hover::before {
    left: 100%;
}

.social-icons img {
    width: 25px;   
    height: 25px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: brightness(1.2);
}
.nav4{
    top: 0%;
    margin-bottom: 30%;
    
}


.social-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.social-icons img {
    width: 30px;   
    height: 32px;
    display: grid;
}
.sub{
    border-radius: 10px;
    width: 100%;
    padding: 12px;
    cursor: pointer;
}

.form-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.black_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1001;
  backdrop-filter: blur(5px);
  animation: fadeInUp 0.3s ease;
}

#fade {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1001;
  backdrop-filter: blur(5px);
}

/* Tablet & Small Screens (768px and below) */
@media screen and (max-width: 768px) {
  header {
    padding: 20px 5%;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .logo-container {
    flex-direction: column;
    gap: 15px;
  }

  .logo-container img {
    width: 70px;
  }

  .nav1 {
    flex-wrap: wrap;
    gap: 5px;
    padding: 12px 5%;
  }

  .nav1 a {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 60px 5%;
    min-height: 15px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 1.1rem;
  }

  .section {
    padding: 50px 5%;
  }

  .section-title {
    font-size: 1.8rem !important;
  }

  .cards {
    gap: 20px;
  }

  .card-wrapper {
    flex: 0 1 calc(50% - 10px);
    min-width: 150px;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .why-container {
    grid-template-columns: 1fr;
  }

  .why-item {
    padding: 30px 20px;
  }

  form {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
  }

  .white_content {
    width: 90%;
    padding: 20px;
  }

  footer {
    padding: 40px 5%;
  }
}

/* Mobile Phones (600px and below) */
@media screen and (max-width: 600px) {
  header {
    padding: 15px 5%;
  }

  header h1 {
    font-size: 1.3rem;
  }

  header p {
    font-size: 0.9rem;
  }

  .logo-container {
    gap: 10px;
  }

  .logo-container img {
    width: 50px;
  }

  .nav1 {
    right: 0%;
    gap: 0;
    padding: 0;
  }

  .nav1 a {
    padding: 12px;
    font-size: 0.85rem;
    border-radius: 0;
    display:grid;
    right: 0px;
  }

  .nav1 a:hover {
    background: #ffc800;
    color: #000;
  }

  .hero {
    padding: 40px 5%;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .section {
    padding: 30px 5%;
    display: block;
  }

  .section-title {
    font-size: 1.4rem !important;
  }

  .cards {
    flex-direction: column;
    gap: 15px;
  }

  .card-wrapper {
    flex: 1;
    min-width: 100%;
  }

  .card {
    padding: 20px 15px;
  }

  .card-icon {
    font-size: 2rem;
  }

  .card-link {
    font-size: 1rem;
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-item {
    padding: 25px 15px;
  }

  .why-icon {
    font-size: 2.5rem;
  }

  .why-item h3 {
    font-size: 1.1rem;
  }

  .why-item p {
    font-size: 0.9rem;
  }

  form {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    gap: 12px;
  }

  input, textarea {
    padding: 12px 15px;
    font-size: 16px;
  }

  textarea {
    height: 100px;
  }

  .sub {
    padding: 12px;
    font-size: 0.9rem;
  }

  footer {
    padding: 30px 5%;
    margin-top: 40px;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 30px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-icons img {
    width: 20px;
    height: 20px;
  }

  .white_content {
    width: 95%;
    padding: 20px;
    border: 3px solid #ffc800;
    max-height: 70vh;
  }

  .close-btn {
    font-size: 24px !important;
  }
}

/* Extra Small Screens (400px and below) */
@media screen and (max-width: 400px) {
  header h1 {
    font-size: 1rem;
  }

  .logo-container img {
    width: 40px;
  }

  .nav1 a {
    padding: 10px;
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.1rem !important;
  }

  .card {
    padding: 15px 10px;
  }

  .card-icon {
    font-size: 1.8rem;
  }

  .card-link {
    font-size: 0.9rem;
  }

  form {
    padding: 15px;
    gap: 10px;
  }

  input, textarea {
    padding: 10px 12px;
  }

  footer {
    padding: 20px 5%;
  }

  .white_content {
    width: 98%;
    border-width: 2px;
  }
}
.white_content {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  max-height: 80vh;
  padding: 25px;
  border: 4px solid #ffc800;
  background: linear-gradient(135deg, white, #f5f5f5);
  z-index: 1002;
  overflow: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: slideInDown 0.5s ease;
}

.white_content a {
  color: #ff6600;
  font-weight: bold;
  cursor: pointer;
  display: none;
}

.close-btn {
  display: block !important;
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  font-size: 28px !important;
  color: #ff6600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  font-weight: bold !important;
  color: #ffc800 !important;
}

.close-btn:hover {
  color: #ff0000 !important;
  transform: rotate(90deg) scale(1.2) !important;
}

.white_content p {
    text-decoration: none;
    color: inherit;
}

.modal-img {
  width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 10px;
  display: block;
}
