body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: linear-gradient(to left, #2959f7, #ffffff); 
      zoom: 90%;
    }
  p{
    text-align: justify;
  }
    
    header {
      background-color: #2f48d6;
      color: white;
      padding: 10px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header img {
      height: 90px;
      width: 90px;
      margin-left: 60px;
      border-radius: 50%;
    
    }
#adjust-instagram-icon,
#adjust-linkedin-icon,
#adjust-facebook-icon,
#adjust-gmaps-icon {
  height: 50px;
  width: 50px;
  margin-left: 10px;
  border-radius: 50%;
  object-fit: cover;
}

    nav {
      display: flex;
      gap: 20px;
      margin-right: 30px;
      align-items: center;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 18px;
    }
    /* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #3f51b5;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 4px;
  padding: 10px 0;
}

.dropdown-content a {
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
}

.dropdown-content a:hover {
  background-color: #2f48d6;
}

.dropdown:hover .dropdown-content {
  display: block;
}


    .social-icons img {
      height: 40px;
      margin-left: 20px;
    }

    .main {
  display: flex;
  align-items: center;
  justify-content: center;

  width:100% 
 
}
.interncontent{
  display: flex;
  text-align: center;
 
}
.internimage{
  width: 50%;
}

.main-image img {
  width: 600px;
  max-width: 100%;
  margin-left: -80px;
}

.main-text {
  max-width: 600px;
  margin-top: 5%;
}

.main-text-intern{
  max-width: 600px;
  margin-top: 5%;
}
.main-text-intern  h1 {
  color: rgb(26, 9, 60);
  font-size: 50px;
  margin-bottom: 20px;
}


.main-text-intern p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}


.main-text h1 {
  color: rgb(26, 9, 60);
  font-size: 50px;
  margin-bottom: 20px;
}


.main-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

    .services {
  
  padding: 20px 20px 40px 20px; 
  margin-top: -50px; 
  text-align: center;
}

    .services h2 {
      color: rgb(26, 9, 60); 
      font-size: 40px;
      margin-bottom: 30px;
    }

    .service-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    /* ...existing code... */
.service-grid a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.service-box {
  background: white;
  width: 290px;           /* Larger width */
  min-height: 440px;      /* Larger and fixed height */
  max-height: 440px;
  padding: 30px 20px 20px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(31, 41, 85, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.service-box img {
  height: 170px;
  width: auto;
  margin-bottom: 25px;
  object-fit: contain;
}

.service-box h3 {
  font-size: 20px;
  color: #111;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none; /* Remove underline */
}

.service-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  text-align: justify;
  flex: 1;
  margin-bottom: 0;
  text-decoration: none; /* Remove underline */
}

.service-box:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 40px rgba(31, 41, 85, 0.45);
  z-index: 2;
}
/* ...existing code... */

    .clients-section {
  
  padding: 60px 20px;
  margin-top: -50px; /* to overlap with the services section */
  text-align: center;
}

.clients-title {
  color: rgb(26, 9, 60);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
  gap: 35px; 
  justify-items: center;
  align-items: center;
  max-width: 1300px; 
  margin: 0 auto;
}

.client-card {
  width: 180px;
  height: 180px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(31, 41, 85, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(31, 41, 85, 0.3);
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#adjust-client-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: 150px;  /* Adjust height as needed */
  width: auto;
}
#adjust-client1-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: 100px; /* Adjust height as needed */
  width: auto;
}
#adjust-client3-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: 120px; /* Adjust height as needed */
  width: auto;
}
#adjust-client4-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: 120px; /* Adjust height as needed */
  width: auto;
}
.products-section {
  padding: 40px 20px;
  margin-top: -65px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: rgb(26, 9, 60);
  font-weight: 800;
  margin-bottom: 20px; /* reduced from 40px to 20px */
}
.products-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  
  padding: 60px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.product-card {
  width: 220px;
  height: 220px;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(31, 41, 85, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(31, 41, 85, 0.45);
}

.product-card img {
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
}

#adjust-product1-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: 100px; /* Adjust height as needed */
  width: auto;
}
#adjust-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: 170px; /* Adjust height as needed */
  width: auto;
}
.contact-section {
  padding: 60px 5%;
  background: linear-gradient(to left, #2959f7, #ffffff);
  margin-top: -75px; /* to overlap with the products section */
}
.androidheadernew{
    display: none;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */

}

/* Modal Content */
.modal-content {
  background-color: #fefefe;

}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  justify-content: flex-start; /* aligns items to the left */
}

.contact-form-wrapper {
  flex: 0 0 450px;;
}

.contact-title {
  font-size: 2.2rem;
  color:  rgb(26, 9, 60);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9f9f9;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 100, 0.05);
}

.input-group i {
  color: #3b5bff;
  font-size: 1.1rem;
}

.input-group input,
.input-group textarea {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
}

.input-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
 margin-top: 30px;
  padding: 10px 30px;
  font-size: 16px;
  border: 2px solid #00008B;
  background: white;
  color: #00008B;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
   background: #00008B;
  color: white;
}

.contact-image img {
  width: 540px;   /* Increase or adjust as needed */
  height: 500px;  /* Increase or adjust as needed */
  margin-left: 90px;
  display: block;
}
.review-section{
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(to left, #2959f7, #ffffff);
}

.rating-box {
  max-width: 800px;
  margin: 0 auto;
}

.rating-box h2 {
  font-size: 28px;
  color: #000;
}

.rating-box .stars {
  color: orange;
  margin-left: 10px;
}

.rating-box p {
  margin-top: 5px;
  font-size: 16px;
  color: #333;
}

.rating-bars {
  margin-top: 30px;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
}

.rating-row span:first-child {
  width: 60px;
  text-align: left;
}

.rating-row span:last-child {
  width: 30px;
  text-align: right;
}

.bar {
  flex: 1;
  height: 20px;
  background: #eee;
  margin: 0 10px;
  border-radius: 4px;
}

.fill-5 {
  background: #00b383;
  width: 98%;
}

.fill-4 {
  background: #4a90e2;
  width: 10%;
}

.review-btn {
  margin-top: 30px;
  padding: 10px 30px;
  font-size: 16px;
  border: 2px solid #00008B;
  background: white;
  color: #00008B;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.review-btn:hover {
  background: #00008B;
  color: white;
}

.contact-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
   z-index: 999;
  background-color: #0c0745;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;

}

.contact-icon img {
  height: 50px;
  width: 50px;
}

.contact-icon:hover {
  transform: scale(1.1);
}



.footer {
  background: linear-gradient(to left, #2959f7, #ffffff);
  padding: 40px 20px 0;
  margin-top: 60px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: left;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: #190482;
  margin: 4px 0;
  text-decoration: none;
}

.footer-column p {
  color: #000;
  margin: 4px 0;
}

.footer-social {
  text-align: center;
  margin-bottom: 10px;
}

.footer-social img {
  height: 30px;
  margin: 0 10px;
}

.site-footer {
  background-color: #d3d3d3;
  padding: 10px 0;
  text-align: center;
  font-size: 15px;
  font-family: Arial, sans-serif;
  color: #000;
  border-top: 1px solid #bbb;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer p {
  margin: 0;
  text-align: center;
}








html {
  scroll-behavior: smooth;
}

.wrapper {
  width: 90vw;
  margin: 0 auto;
  max-width: 1400px ;
}

.sticky-sidebar {
  position: fixed;
  top: 35%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.sticky-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg); 
  background-color: #2f48d6;
  color: white;
  padding: 12px 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius:  0;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sticky-btn:hover {
  background-color: #1d2ea6;
}
#apply-btn {
  background-color: #2f48d6;
  color: white;
  padding: 12px 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.3s ease;
  height: 180px; /* Adjust height as needed */
}
.client-card, .product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.client-name, .product-name {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #1a093c;
  text-align: center;
}
.policy-content {
  background-image: url("..images/images/background image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 50px 80px;
  color: black;
  font-family: Arial, sans-serif;

  max-width: 1000px;
  margin: 0 auto; /* ✅ this centers the section */
}



.policy-content h1 {
  font-size: 36px;
  color: #18049c;
  text-align: right;
  display: inline-flex;
  align-items: right;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.policy-content h2 {
  font-size: 30px;
  color: #18049c;
  margin-top: 40px;
}

.policy-content p,
.policy-content li {
  font-size: 80px; /* slightly bigger */
  line-height: 1.9;
  color: #333;
}


.policy-content ul {
  margin-left: 20px;
  padding-left: 10px;
  
}

.icon {
  font-size: 36px;
}

.purple-dot {
  color: #8e24aa;
  font-weight: bold;
  margin-right: 5px;
}

.center {
  text-align: center;
}

.security-para {
  margin-top: 20px;
  font-weight: bold;
}

.centered-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #4a4a4a;
}


.centered-heading .icon {
  font-size: 32px;
  margin-right: 10px;
  vertical-align: middle;
}


.policy-content p,
.policy-content li {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}


.policy-content ul {
  padding-left: 30px;
}

.policy-content li {
  margin-bottom: 10px;
}

.security-para {
  text-align: left;
}
.policy-divider {
  border: none;
  height: 3px;
  background-color: #00008B; 
  width: 100%; 
}
.policy-icon {
  height: 55px;
  width: 50px;
  margin-right: 10px;
  vertical-align: middle;
}
.whatsapp-icon {
  position: fixed;
  bottom: 30px; 
  right: 120px;
  z-index: 999;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-icon img {
  height: 50px;
  width: 50px;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}
/* Custom layout adjustments for SaaS and Internship sections */



.internship-up {
  margin-top: -150px; /* move section upward */
}
/* Shift both SaaS and Internship sections to the left */
.policy-content .main {
  margin-left: -40px;
  padding-left: 0px; /* Adjust this value as needed */
}
.policy-content {
  padding-left: 10px; /* Reduce this value if you want the whole section more left */
}
.internship-detail-section {
  display: flex; 
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 30px;
  margin-top: 50px;
}

#internship-left-image {
  width: 550px;
   margin-top: 15%;
   height: 420px;
}



.internship-detail-section .main-text {
  max-width: 600px;
}

.internship-detail-section .main-text h1 {
  font-size: 48px;
  color: #1a093c;
  margin-bottom: 20px;
}

.internship-detail-section .main-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}



.intern-options-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 60px 20px;
  margin-top: -30px;
  flex-wrap: wrap;
}

.option-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
  text-align: center;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
}

.option-card img {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.option-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border: 2px solid #00008B;
  color: black;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.option-btn:hover {
  background: #00008B;
  color: white;
}

/* ======= Domains Section ======= */
.domain-section {
  text-align: center;
  padding: 30px 20px 40px;
  background: linear-gradient(to left, #2959f7, #ffffff);
}

.domain-title {
  font-size: 42px;
  font-weight: bold;
  color: #18049c;
  margin-bottom: 40px;
}

.domain-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.domain-grid img {
  width: 180px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.domain-grid img:hover {
  transform: scale(1.1);
}

.explore-button-container {
  margin-top: 20px;
}

.explore-btn {
  padding: 10px 30px;
  font-size: 16px;
  border: 2px solid #00008B;
  background:white; ;
  color: #00008B;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.explore-btn:hover {
  background-color: #00008B;
  color: white;
}

/* WHO WE ARE Section */

/* WHO WE ARE Section */
.who-we-are-section {
  padding: 30px 20px;
  text-align: center;
  background: linear-gradient(to left, #2959f7, #ffffff);
}

.who-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px; /* Reduce gap to bring images closer */
  flex-wrap: nowrap; /* Prevent wrapping to keep all on one line */
}

.who-left, .who-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.who-content {
  max-width: 500px; /* Reduce width so images are closer */
  flex: 1 1 500px;
  text-align: left;
}

.who-left img, .who-right img {
  width: 400px; /* Adjust as needed */
  max-width: 100%;
  height: auto;
}

.who-left img {
  margin-right: 15px; /* Small margin to paragraph */
}

.who-right img {
  margin-left: 15px; /* Small margin to paragraph */
}
.who-content h2 {
  color: #18049c;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.who-content p {
  font-size: 18px;
  color: #111;
  line-height: 1.8;
}
.intern-options-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
  padding: 60px 20px;
  margin-top: -30px;
  flex-wrap: wrap;
}

.option-card,
.stats-column {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
  text-align: center;
  width: 290px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
  align-items: center;
}

/* Style for the big number/stat buttons inside the cards */
.stats-column .stat-btn,
.option-card .stat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;         /* Increase font size */
  font-weight: bold;
  color: #fff;
  background: #2f48d6;
  border: none;
  border-radius: 50%;
  width: 80px;               /* Increase icon/button size */
  height: 80px;
  margin: 18px auto 20px auto;
  box-shadow: 0 4px 16px rgba(31, 41, 85, 0.18);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  outline: none;
}

.stats-column .stat-btn:hover,
.option-card .stat-btn:hover {
  background: #1d2ea6;
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(31, 41, 85, 0.28);
}

/* Optional: style the label/text below the stat button */
.stats-column .stat-label,
.option-card .stat-label {
  font-size: 1.1rem;
  color: #1a093c;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ...existing code... */


.footer a,
.footer a:visited,
.footer a:active {
  text-decoration: none !important;
  color: inherit !important;
}

.footer-social a,
.footer-social a:visited,
.footer-social a:active {
  text-decoration: none !important;
  color: inherit !important;
}

.footer-social img {
  border: none;
  outline: none;
  box-shadow: none;
}
/* Shift the technical internship image to the right */
.internship-up .main-image img {
  margin-left: 40px; /* Adjust value as needed */
}
.main-text {
  display: flex;
  flex-direction: column;
  align-items: center;
 
}
.main-text-intern{
    display: flex;
  flex-direction: column;
  align-items: center;
}
.androidheading{
  display: none;
}

.main-text p {
  text-align: justify;
  width: 100%;
}

.main-text .review-btn {
  margin-top: 18px;
  align-self: center;
}
/* Certificate Validation Box Styles */
.validate-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(to left, #2959f7, #ffffff);
}

.validate-box {
  background-color: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 41, 85, 0.25);
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.validate-box h2 {
  font-size: 32px;
  color: #18049c;
  margin-bottom: 30px;
}

.validate-input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.validate-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #2f48d6;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.validate-btn:hover {
  background-color: #1d2ea6;
}
/* Certificate Validation with Image */
.validate-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(to left, #2959f7, #ffffff);
  gap: 60px;
  flex-wrap: wrap;
}

.validate-image img {
  width: 360px;
  max-width: 100%;
  height: auto;
}

.validate-box {
  background-color: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 41, 85, 0.25);
  width: 100%;
  max-width: 480px;
  text-align: center;
  margin-left: 30px; /* slight shift to right */
}

.validate-box h2 {
  font-size: 32px;
  color: #18049c;
  margin-bottom: 30px;
}

.validate-input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.validate-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #2f48d6;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.validate-btn:hover {
  background-color: #1d2ea6;
}
/* Animation Keyframes */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Apply animations to elements */
.validate-image {
  animation: slideInFromLeft 1s ease-out forwards;
}

.validate-box {
  animation: slideInFromRight 1s ease-out forwards;
}
.apply-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  background: linear-gradient(to left, #2959f7, #ffffff);
  flex-wrap: wrap;
}

.apply-form-container {
  background: white;
  padding: 40px 50px;
  box-shadow: 0 0 30px rgba(20, 30, 200, 0.4);
  border-radius: 10px;
  width: 800px;
  animation: slideRight 1s ease-out;
}

.apply-form-container h2 {
  text-align: center;
  font-size: 28px;
  color: #1a093c;
  margin-bottom: 30px;
}

.apply-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.apply-form input,
.apply-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
}

.apply-form label {
  font-weight: bold;
  font-size: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: span 2;
}

.apply-btn {
  margin-top: 30px;
  grid-column: span 2;
  padding: 12px;
  background-color: #00008B;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background-color: #1d2ea6;
}

.apply-image img {
  max-width: 420px;
  animation: fadeIn 1.3s ease-in;
}

@keyframes slideRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.details-section {
  padding: 60px 20px;
  background: linear-gradient(to left, #2959f7, #ffffff);
  height:auto;
}

.details-section h1 {
  text-align: center;
  font-size: 32px;
  color: #2f48d6;
  margin-bottom: 30px;
}

.search-box {
  display: block;
  margin: 0 auto 30px;
  padding: 10px;
  width: 60%;
  max-width: 500px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.details-table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.details-table thead {
  background-color: #2f48d6;
  color: white;
}

.details-table th,
.details-table td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.details-table tr:hover {
  background-color: #f5f5f5;
}

/* College Table Styles */
#collegeTable {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

#collegeTable thead {
  background-color: #2f48d6;
  color: white;
}

#collegeTable th,
#collegeTable td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

#collegeTable tr:hover {
  background-color: #f5f5f5;
}

/* Search box style */
#collegeSearch {
  display: block;
  margin: 0 auto 30px;
  padding: 10px;
  width: 60%;
  max-width: 500px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}
/* Intern Table Styles */
#internTable {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

#internTable thead {
  background-color: #2f48d6;
  color: white;
}

#internTable th,
#internTable td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

#internTable tr:hover {
  background-color: #f5f5f5;
}

/* Intern search box style */
#internSearch {
  display: block;
  margin: 0 auto 30px;
  padding: 10px;
  width: 60%;
  max-width: 500px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.college-android-img {
  display: none;
}
.interns-android-img{
  display: none;
}

#adjust-heading {
  
  margin-bottom: 40px;
}

#adjust-para {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  text-align: justify;
  flex: 1;
  margin-top: 0px;
  text-decoration: none;
  
  
}
/* Certificate Validation Result Box */
.validation-result {
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: none; /* Initially hidden */
    padding: 10px;
    border-radius: 5px;
    max-width: 500px; /* Matches your validation box width */
    margin-left: auto;
    margin-right: auto;
    opacity: 0; /* For fade effect */
    transition: opacity 0.5s ease-in-out;
}

/* Show Class (Triggers Fade) */
.show-result {
    display: block;
    opacity: 1;
}

/* Success Message */
.validation-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

/* Error Message */
.validation-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.maintenance-section {
  padding: 40px 20px;
  background: linear-gradient(to left, #2959f7, #ffffff);
  display: flex;
  justify-content: center;
}

.maintenance-container {
  display: flex;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
}

.maintenance-image {
  max-width: 600px;
  width: 300%;
  height: auto;
  transform: translateX(-150px);
}

.maintenance-text {
  flex: 1;
}

.maintenance-text h1 {
  font-size: 25px;
  margin-bottom: 15px;
  color: #1e0f7f;
  transform: translateX(-20px);
}

.maintenance-text p {
  font-size:25px;
  color:black;
  line-height: 1.6;
  transform: translateX(-20px);
}

@media (max-width: 768px) {
  .maintenance-container {
    flex-direction: column;
    text-align: center;
  }

  .maintenance-text h2 {
    font-size: 24px;
  }

  .maintenance-text p {
    font-size: 16px;
  }
}

