:root {
  --primary-color: #009846;
  --primary-dark: #075985;
  --primary-light: #7dd3fc;
  --secondary-color: #e0f2fe;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f5f7fa;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --border-color: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

 font-family: "Barlow", sans-serif !important;
  color: var(--text-color);
  line-height: 1.6;
  
    background-image: url(../images/bodyofagrivet1.webp) !important;
    background-position: center;
    background-size: cover;



    background-attachment: fixed;
    position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.70); /* white overlay with 60% opacity */
  z-index: -1;
}

/*
body::after {
  content: "";
  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
 background: rgba(255,255,255,0.4); 
}*/
/*body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
 background: rgb(255 255 255 / 88%);
  z-index: -1;
}*/
h1,
h2,
h3,
h4,
h5,
h6 {
 /* font-family: "Montserrat", sans-serif;*/
 font-family: "Barlow", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}
   .lab-box {
         background-color: #003da5;
         color: #fff;
         border-radius: 8px;
         padding: 10px 10px;
         min-height: 100px;
         /* Equal height look when closed */
         display: flex;
         flex-direction: column;
         justify-content: center;
         /* Centers title area vertically */
         align-items: center;
         /* Centers horizontally */
         text-align: center;
        
         overflow: hidden;
         position: relative;
      }

      .lab-box:hover {
       
         box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      }

      /* Title + Arrow alignment */
      .lab-title {
         display: flex;
         align-items: center;
         justify-content: center;
         /* Centers the text and arrow */
         font-weight: 700;
         font-size: 1.2rem;
         margin: 0;
         width: 100%;
         gap: 8px;
         /* space between text and arrow */
      }

      /* Arrow icon styling */
      .lab-title i {
         font-size: 1rem;
         transition: transform 0.3s ease;
         display: inline-block;
         color: #fff;
      }

      /* Rotate arrow when active */
      .lab-box.active .lab-title i {
         transform: rotate(180deg);
      }

      /* Collapsible content animation */
      .lab-content {
         max-height: 0;
         overflow: hidden;
         opacity: 0;
         transition: max-height 0.6s ease, opacity 0.4s ease;
      }

      /* Show content when active */
      .lab-box.active .lab-content {
         max-height: 500px;
         opacity: 1;
         margin-top: 15px;
      }

      /* Download button */
      .btn-download {
         background: #fff;
         color: #003da5;
         border-radius: 6px;
         font-weight: 600;
      }

      @media (max-width: 991px) {
         .lab-box {
            min-height: auto;
            padding: 20px;
         }
      }
/* Buttons */
.btn,
.cta-btn,
.download-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn {
  color: var(--primary-dark);
  background-color: transparent;
  border: 1px solid var(--primary-dark);
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
}

.cta-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
}

.cta-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.download-btn {
  background-color: var(--primary-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.download-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.link-btn {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.link-btn:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
.inforesearch-section .info-heading{
  justify-content: center;
  margin-bottom: 20px !important;
}
/* Section Header */
/*.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-header p {
  max-width: 700px;
  margin: 1rem auto 0;
  color: var(--text-light);
}

*/

/* Hero Section */

/* Tabs */
.tabs {
  margin-top: 2rem;
}

.tab-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  background-color: var(--gray-100);
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn i,
.tab-btn svg {
  font-size: 1rem;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.tab-content {
  /*  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 2rem;*/
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h4 {
  margin-bottom: 0.75rem;
  color: #0632ad;
  font-weight: 600;
  text-align: center;
}
.card-content p {
  text-align: center;
}
.service-card .service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card .service-icon i,
.service-card .service-icon svg {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
}

.service-card:hover .service-icon i,
.service-card:hover .service-icon svg {
  color: var(--white);
  transform: scale(1.1);
}

/* Laboratory Services */
.price-list {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.price-list table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.price-list th,
.price-list td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.price-list th {
  font-weight: 600;
  background-color: var(--gray-100);
}

.price-list tr:last-child td {
  font-weight: 600;
  color: var(--primary-dark);
}

.price-list .btn {
  float: right;
}

/* School Section */
.school-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vision-mission .card {
  margin-bottom: 1.5rem;
}

.vision-mission .download-btn {
  margin-top: 1.5rem;
}

.program-highlights {
  margin-top: 1rem;
}

.highlight-list {
  margin: 1.5rem 0;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Life Science */
.life-science-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-container {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-caption {
  padding: 1.5rem;
}

/* Timeline */
.timeline-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 20px;
}

.timeline {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  min-width: 1200px;
}

.year-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-width: 250px;
  position: relative;
  transition: transform 0.3s ease;
}

.year-box:hover {
  transform: translateY(-5px);
}

.year {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #007acc;
}

.event-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.event-description {
  font-size: 14px;
  color: #666;
}

.year-line {
  position: absolute;
  height: 4px;
  width: 100%;
  background: #007acc;
  top: 50%;
  left: 100%;
  z-index: -1;
}

.year-box:last-child .year-line {
  display: none;
}

/* Knowledge Room */
.knowledge-tabs .tab-header {
  margin-bottom: 2rem;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.document-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.document-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.document-card h4 {
  margin-bottom: 0.75rem;
}

.download-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.download-link:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.publications-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.publication-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.publication-authors,
.publication-journal {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  box-shadow: var(--box-shadow);
}

.event-date {
  width: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.month {
  font-size: 0.875rem;
  font-weight: 500;
}

.day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
}

.year {
  font-size: 0.875rem;
}

.event-details {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-caption {
  padding: 1.25rem;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/*-----testimonials-----*/
/*.card-2 {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}*/
/*.testimonial .pic{
  border-radius: 50px;
}*/

/* Footer */
#footer {
  /*background-color: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 0;*/
  position: relative;
  background-image: url(../images/SL-040820-29750-27.webp);
  background-size: cover;
  background-position: center;
  padding: 5px 10px 0px 0px;
  color: #000;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  /*margin-bottom: 2.5rem;*/
}

.footer-col h3 {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 19px;
  margin-top: 48px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-light);
}

.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-content p {
  font-size: 16px;
  text-align: justify;
}
.footer-links a {
  color: #000;
  transition: color 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover {
  color: #000;
  padding-left: 5px;
}
.footer-logo {
  margin-bottom: 20px;
  width: 180px;
}
address p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

address p i,
address p svg {
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.social-links a {
  display: flex
;
    align-items: center;
    justify-content: center;
    width:24px;
    height:24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #0632ad;
    transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 1px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0632ad;
}
.footer-bottom p {
  font-weight: 500;
  color: #fff;
  margin-top: 13px;
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=============servicearea============*/
.services-section {
  padding: 60px 20px 60px 30px;
  /*text-align: center;*/
  background-color: #fff;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #222;
}

.services-grid {
  display: flex;
  /*flex-wrap: wrap;*/
  gap: 10px;
  justify-content: center;
}

.service-item {
  width: 260px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.service-item:nth-child(1) {
  animation-delay: 0.1s;
}
.service-item:nth-child(2) {
  animation-delay: 0.2s;
}
.service-item:nth-child(3) {
  animation-delay: 0.3s;
}
.service-item:nth-child(4) {
  animation-delay: 0.4s;
}
.service-item:nth-child(5) {
  animation-delay: 0.5s;
}

.service-item img {
/*  width: 146px;
  height: 111px;

  transition: transform 0.3s ease;
 
  background-color: #fff;
 
  padding: 11px;
  
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);*/
  width: 182px;
    height: 142px;
    /* border-radius: 8px; */
    transition: transform 0.3s ease;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); */
    background-color: #fff;
    /* border-radius: 50%; */
    padding: 8px;
    /* border: 2px solid #0632ad; */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.service-item img:hover {
  transform: scale(1.05);
}

.service-item h3 {
  font-size: 19px;
  margin-top: 35px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
  
}

.service-item p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  line-height: 21px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #333;
}

/* Fade-in animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-item {
    max-width: 100%;
  }
}

/*=============servicearea============*/

/* Slider Section */
.planet-slider {
  /*ackground-color: #0a0a0a;
*/
  color: #ffffff;
  padding: 60px 30px;
 /* font-family: Arial, sans-serif;*/
   font-family: "Barlow", sans-serif;
  position: relative;
  background-image: url("../images/infrusback.webp"); /* replace with your background */
  background-size: cover;
  background-position: center;
}
.infra-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  backdrop-filter: blur(2px);
  z-index: 1;
}
.slider-header {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.slider-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.slider-header p {
  font-size: 16px;
  color: #cccccc;
}

/* Slider Container */
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

/* Navigation Buttons */
.slider-nav {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  transition: background 0.3s;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slider-nav.prev {
  margin-right: 10px;
}

.slider-nav.next {
  margin-left: 10px;
}

/* Slider Track */

/* Hide scrollbar */
.slider-track::-webkit-scrollbar {
  display: none;
}
.slider-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Slider Cards */
.slider-card {
  min-width: 280px;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  height: 161px;
  border: 2px solid #ffffff36;
}

.slider-track {
  display: flex;
  gap: 16px; /* slightly reduce space between cards */
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.slider-card:hover {
  transform: translateY(-5px);
}

.slider-card .tag {
  display: inline-block;
  background-color: #00b4ff;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.slider-card h3 {
  font-size: 18px;
  margin: 10px 0;
  line-height: 29px;
}

.slider-card p {
  font-size: 14px;
  color: #dddddd;
  margin-bottom: 10px;
}

.slider-card a {
  font-size: 14px;
  color: #00b4ff;
  text-decoration: none;
}

.slider-card a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider-header h2 {
    font-size: 28px;
  }

  .slider-card {
    min-width: 250px;
  }

  .slider-nav {
    display: none;
  }
}

/* Responsive */
@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-year {
    left: 30px;
    transform: none;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
    float: none !important;
  }
}

@media screen and (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .school-content,
  .life-science-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .section {
    padding: 3rem 0;
  }

  .cards-container,
  .document-grid,
  .events-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .tab-content {
    padding: 1.25rem;
  }
}

/*=======about-us======*/
.about-us-middle h2 {
  text-align: center;
  font-size: 23px;
  line-height: 36px;
  
 
  font-weight: 700;
   font-family: "Barlow", sans-serif;
}
.about-us-middle {
    border: 1px solid #0632ad;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 20px;
    background-color: #fff;
}
.aboutpara {
 /* font-size:20px;
  text-align:justify;
  width:100%;
  margin-top: 9px;
  line-height: 28px;
  word-spacing: -1px*/
  font-size: 16px;
    text-align: justify;
    width: 100%;
    margin-top: 9px;
    line-height: 28px;
    word-spacing: 3px;
}
.about-us {
  background-color: #8460600f;
  padding: 60px 0;
}
/*=======about-us======*/
/*===========service-card=============*/
.card1-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1400px;
  margin: auto;
}

.card1 {
  flex: 1 1 calc(20% - 20px);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  height: 390px;
}

.card1:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card1 img {
  width: 100%;
  /*  border-radius: 6px;
  margin-bottom: 15px;*/
}

.card1 h3 {
  /*font-size: 18px;
  color: #111827;
  margin: 10px 0;*/
  font-size: 19px;
  color: #111827;
  margin: 13px 0;
  font-weight: 600;
}

.card1 p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.5;
}

.card1 a {
  display: inline-block;
 
  /* background: #0f172a; */
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.card1 a:hover {
  /* background: #1e293b; */
  transform: scale(1.05);
}
.timeline-heading {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0632ad;
  font-weight:700;
  text-align: center;
  
}
.Offereings {
  margin: 60px 60px;
}
@media (max-width: 1200px) {
  .card1 {
    flex: 1 1 calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .card1 {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .card1 {
    flex: 1 1 100%;
  }
}
.btn-12 {
  position: relative;
  right: 0px;
  bottom: 20px;
  border: none;
  box-shadow: none;
  width: 130px;

  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px;
}
.btn-12 span {
  background: #0632ad;
  /*background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);*/
  display: block;
  position: absolute;
  width: 130px;
  height: 40px;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}
.btn-12 span:nth-child(1) {
  box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12:hover span:nth-child(1) {
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.btn-12:hover span:nth-child(2) {
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}
/*===========service-card=============*/
/*============teamsection==============*/
.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 90px;
}
.team-agrivet {
  background-color: #0000000a;
  padding: 50px 0;
}
.team-card {
  background: #dcdcdc;
 /* width: 220px;*/
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-inner {
  /* background: white;*/
  border-radius: 4px;
  /* padding: 20px;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  box-shadow: 0 0 0 3px #fff inset;
}

.team-card img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  /* filter: grayscale(100%); */
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25); */
  /* margin-bottom: 30px; */
  transition: transform 0.3s ease;
  margin-left:21px;
  margin-top: -75px;
}
.team-content {
  background-color: #fff;
  padding: 20px 10px;
  width: 200px;
  height: 184px;
}
.team-card:hover img {
  transform: scale(1.05);
}

.card-inner h3 {
  font-size: 16px;
  margin: 5px 0;
  font-weight: bold;
  color: #0632ad !important;
}

.card-inner span {
  font-size: 13px;
  color: #009846 !important;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-inner p {
  font-size: 11px;
  color: #444;
  line-height: 1.4;
  min-height: 60px;
}

.card-inner a {
  font-size: 13px;
  color: #0632ad;
  margin-top: 10px;
  text-decoration: none;
}

.card-inner a:hover {
  text-decoration: underline;
}
/* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
    }

    .modal-content {
      background-color: #fff;
      margin: 5% auto;
      padding: 30px;
      max-width: 800px;
      display: flex;
      gap: 30px;
      border-radius: 10px;
      position: relative;
      flex-wrap: wrap;
    }

    .modal-image img {
      width:100%;
      height: auto;
      border-radius: 10px;
    }

    .modal-text {
      flex: 1;
    }

    .modal-text h3 {
     font-size: 25px;
    color: #0632ad;
    margin: 0;
    margin-bottom: 20px;
    }

    .modal-text h4 {
      font-size: 20px;
      color: #009846;
      margin: 8px 0;
    }

    .modal-text p {
      font-size: 16px;
      color: #444;
      line-height: 1.6;
    }

    .modal-text a {
      display: inline-block;
      margin-top: 12px;
      color: #0632ad;
      text-decoration: none;
      font-weight: bold;
    }

    .modal-text a:hover {
      text-decoration: underline;
    }
    .modal-text i{
      margin-left: 22px;
    }
    .close {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 26px;
      cursor: pointer;
      color: #333;
    }
/*============teamsection==============*/
/*============workforcerarea==========*/
.team-section {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.highlight {
  font-weight: bold;
}


    .tabs {
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .tab {
      padding: 8px 16px;
      border: none;
      cursor: pointer;
      font-weight: bold;
      color: #000;
    }

    .tab.active {
      background-color: #0632ad;
      color: white;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    /*  margin-top: 30px;*/
      gap: 20px;
    }

    .team-member {
      position: relative;
      text-align: center;
      padding: 20px;
      border-radius: 16px;
      transition: transform 0.3s ease;
      display: none;
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .team-member .badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: orange;
      color: white;
      padding: 4px 12px;
      font-size: 12px;
      border-radius: 20px;
      font-weight: bold;
    }

    .team-member .image-wrapper {
      background: linear-gradient(to bottom right, #222, #555);
      border-radius: 50%;
      padding: 6px;
      display: inline-block;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      margin-bottom: 12px;
    }

    .team-member img {
      width: 200px;
      object-fit: cover;
      display: block;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
      height: 199px;
      background-color: #fff;
    }

    .team-member h5 {
      font-size: 13px;
      font-weight: 600;
      text-align:center;
    }

    .team-member h4 {
      font-size: 17px;
      font-weight: 600;
      margin: 10px 0 4px;
      color: #0632ad;
      text-align:center;
    }

    .team-member p {
      margin: 0;
      font-size: 11px;
      color: #009846;
      text-align:center;
    }
     .team-member.highlighted {
    order: -1;
    width: 100%;
    text-align: center;
    background-color: #f0f8ff;
    padding: 30px 20px;
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .team-member.highlighted img {
    max-width: 180px;
    height: auto;
    display: inline-block;
    margin-bottom: 15px;
  }
/*============workforcerarea==========*/
/*============Knowledgearea============*/
.knowledge-room {
  padding: 60px 30px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #0632ad;
  margin-bottom: 32px;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.knowledge-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.knowledge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
  font-size: 36px;
  color: #0c8d39;
  margin-bottom: 15px;
}

.knowledge-card h3 {
  font-size: 20px;
  color: #0632ad;
  margin-bottom: 10px;
}

.knowledge-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.card-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #0632ad;
  color: #fff;
  font-size: 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.card-btn:hover {
  background-color: #031e6a;
  color: #fff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*============Knowledgearea============*/



.hero-with-overlay {
  height: 300px;
  background: url(../images/clientback.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 70px;
}

.breakthrough-card {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
}

.content-box {
  background: white;
  max-width: 900px;
  margin: -200px auto 0;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
}

.subtitle {
  color: #007c8c;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.main-title {
  font-size: 28px;
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.partner-title {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

/* Logo Slider */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.logo-track {
  display: flex;
  width: calc(200px * 10); /* Adjust if needed */
  animation: scroll 25s linear infinite;
  align-items: center;
  gap: 40px;
}

.logo-track img {
  width: 100%;
  height: auto;
  /* opacity: 0.9;
  filter: grayscale(100%);*/
  transition: 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*==============team=============*/

.team-section {
  padding: 60px 30px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-intro .subtitle {
  color: #0082c9;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-intro .description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #444;
}

.section-intro h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 30px;
}


/*==============team=============*/
/*============infrustructure============*/
.infra-section {
  position: relative;
  background-image: url("../images/infrusback.webp"); /* replace with your background */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
}

.infra-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 67%); /* dark overlay */
  backdrop-filter: blur(2px);
  z-index: 1;
}

.infra-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.infra-content h2 {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.infra-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.infra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.infra-card .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #00bfa6;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
}

/*============infrustructure============*/

/*=============header=============*/
/* Navbar */
/*.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #ccc;
  background-color: white;
  position: relative;
  z-index: 1002;
}*/
.navbar {
  /*position: !important;*/
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px !important;
  /* border-bottom: 1px solid #ccc; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.logo-box {
  text-align: center;
  line-height: 1;
}
.logo-box img {
  width: 153px;
}
.logo-top {
  font-size: 10px;
  color: #002f6c;
  letter-spacing: 1px;
}

.logo-middle {
  font-size: 20px;
  font-weight: bold;
  color: #0047ab;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding: 2px 0;
}

.logo-bottom {
  font-size: 10px;
  color: #002f6c;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #0047ab;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #002f6c;
}

.search-icon {
  font-size: 18px;
  color: #0047ab;
  cursor: pointer;
}

/* Hero Section */
#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  /*margin-top: 90px;*/
  border-top: 6px solid #009846;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 10;
}

.hero-logo img {
  height: 80px;
  width: auto;
}

.content1 {
 position: absolute;
        z-index: 1;
        color: white;
        text-align: center;
        padding: 100px 60px;
        animation: fadeIn 2s ease-in-out;
        max-width: 800px;
        margin-top: 100px;
        left: 33%;
}

.content1 h1 {
  font-size: 49px;
        margin-bottom: 20px;
        font-weight: 700;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  font-size: 18px;
  background-color: #62c370;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #4caf50;
}

/* Hamburger */
.hamburger {
  /*position: fixed;
  top:19%;*/
  position: absolute;
    top: 29%;
  right: 25px;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1100; 
}

.bar {
  height: 4px;
  width: 100%;
  background-color: #fff;
  margin: 4px 0;
  transition: all 0.4s ease;
}

/* Hide hamburger when menu is open */
.hamburger.open {
  display: none;
}

.sidebar {
  position: fixed;
  /*top: 29px;*/
  right: -300px;
  width: 280px;
  height: 100%;
  /*background: #0632ad;*/
  /*background-color: #1d3882d9;*/
  color: white;
  padding: 10px 20px;
  transition: right 0.4s ease;
  z-index: 1000;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
 background: #2c3e50;  
background: -webkit-linear-gradient(to right, #3498db, #2c3e50); 
/*background: linear-gradient(to right, #3498db, #2c3e50); 
*/
/*background: linear-gradient(to right, #3498dbab, #2c3e50)*/
background: linear-gradient(to right, #3498db7d, #2c3e509c);
}

.sidebar.open {
  right: 0;
}

.sidebar a {
  display: block;
  padding: 14px 10px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
  font-size: 18px;
}

.sidebar a:hover {
  background: #072fb8;
}
  .content {
      position: absolute;
      top:30%;
     /* left: 33%;*/
      transform: translate(-50%, -50%);
      text-align:left;
      padding: 20px;
      width: 90%;
      max-width: 800px;
      opacity: 0;
      animation: fadeIn 1.5s ease forwards;
    }
.modal-content{
  background-color: #ffffff00 !important;
}
.modal-header{
  border: none !important;
}
    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .content h1 {
      font-size:32px;
      margin-bottom: 20px;
      animation: slideUp 1s ease-in-out;
      color:#fff;
    }

    .content p {
      font-size: 1.3em;
      opacity: 0.9;
      animation: fadeSlide 1.5s ease-in-out;
      color: #fff;
    }

    @keyframes slideUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes fadeSlide {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-out-left {
  animation: slideOutLeft 0.5s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}
   .language-selector {
      position: relative;
      display: inline-block;
      font-family: sans-serif;
    }

    .language-button {
      background: #fff;
      border: 1px solid #ccc;
      padding: 8px 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .language-button img {
      height: 16px;
      margin-right: 6px;
    }

    .language-list {
      display: none;
      position: absolute;
      background-color: white;
      border: 1px solid #ccc;
      z-index: 999;
      margin-top: 5px;
      width: 150px;
    }

    .language-list a {
      display: flex;
      align-items: center;
      padding: 8px 12px;
      text-decoration: none;
      color: black;
    }

    .language-list a img {
      height: 16px;
      margin-right: 8px;
    }

    .language-selector:hover .language-list {
      display: block;
    }
/*=============header=============*/

.mnuyimg {
 width: 700px;
    position: relative;
    left: 15px
}

/*-===============researcharea==================*/
.image-section {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin: 40px auto;
 /* font-family: Arial, sans-serif;*/

}

.toggle {
  display: none;
}

.center-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  border: 2px solid #fff;
  transition: background 0.3s;
}

.center-button:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

.hidden-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 14px;
}

.toggle:checked + .center-button + .hidden-content {
  max-height: 200px;
  padding: 15px 20px;
}

/* ----------------------------------------------------- */
/*.box-item {
  width: 100%;
  background:#0632ad;
  border-radius: 7px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
 
}

.box-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.box-content {
  padding: 20px;
}

.box-item input[type="checkbox"] {
  display: none;
}

.box-item label {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  display: inline-block;
}

.box-item .paragraph {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #fff;
  font-size: 15px;
  margin-top: 0;
}

.box-item input[type="checkbox"]:checked ~ .paragraph {
  max-height: 300px;
  margin-top: 10px;
}

.box-item ul li {
  list-style: circle;
  color: #fff;
  margin-bottom: 5px;
}
.paragraph p{
  color:#fff;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}
.newbox {
  margin-top: 40px;
  text-align: center;
}

.newbox h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 8px auto 20px;
  display: inline-block;
 
  padding-bottom: 5px;
}*/

.box-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0632ad;
  border-radius: 7px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
              0 10px 10px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  padding: 20px;
  width: 100%;
  margin-bottom: 50px;
  
}

.box-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.box-item input[type="checkbox"] {
  display: none;
}

.box-item label {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.box-item .paragraph {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #fff;
  font-size: 15px;
  margin-top: 0;
  text-align: center;
 
}

.box-item input[type="checkbox"]:checked ~ .paragraph {
  max-height: 400px; /* enough to show content */
  margin-top: 10px;
}

.paragraph p {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  margin: 10px 0;
}

.box-item a {
  color: #fff;
  font-weight: bold;
  margin-top: 8px;
  display: inline-block;
  text-decoration: underline;
}

.newbox {
  margin-top: 40px;
  text-align: center;
}

.newbox h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 8px auto 20px;
  display: inline-block;
  padding-bottom: 5px;
}


 /* .box-item {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background:#fff;
    border-radius: 7px;
   box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
   width: 100%;
  }

  .box-content input[type="checkbox"] {
    display: none;
  }

  .box-content label {
    cursor: pointer;
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .paragraph {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  #toggle1:checked ~ .paragraph {
    max-height: 300px; 
  }*/
/* Section title box */

/* ----------------------------------------------------- */



/*-------------------------------------------------------*/
.sociales {
  text-align: center;
  margin-bottom: 20px;
}
#timeline {
  width: 600px;
  height: 350px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  background: url('../images/dot.gif') left 45px repeat-x;
  padding: 20px;
}

#dates {
  width: max-content;
  height: 80px;
  overflow: visible;
  display: flex;
}

#dates li {
 list-style: none;
  float: left;
  width: 100px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  background: url('../images/biggerdot.png') center bottom no-repeat;
  /* padding-right: 150px; ❌ REMOVE THIS */
  position: relative;
  margin-right: 50px; /* ✅ ADD THIS */}

#dates a {
  line-height: 38px;
  padding: 10px 8px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
#dates li a {
  display: block;
  width: 100%;
}
#dates a.selected {
  font-size: 26px;
  font-weight: 600;
  color: #333 !important;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding-top: 30px;
}

#dates a.selected::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 100%;
  background-color: #e53935;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  z-index: -1;
}

#dates a.selected::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #e0e0e0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  z-index: -1;
}

#issues {
  width: 800px;
  height: 350px;
  overflow: hidden;
}

#issues li {
  width: 800px;
  height: 350px;
  list-style: none;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#issues li h1 {
  color: #009846;
  font-size: 37px;
  margin: 0 0 20px 0;
  text-align: left;
  min-height: 40px; /* ✅ Forces vertical space even if empty */
}

#issues li p {
  font-size: 14px;
  margin: 0 70px 10px 7px;
  line-height: 22px;
}

#grad_left,
#grad_right {
  width: 100px;
  height: 350px;
  position: absolute;
  top: 0;
}

#grad_left {
  left: 0;
  background: url('../images/grad_left.png') repeat-y;
}

#grad_right {
  right: 0;
  background: url('../images/grad_right.png') repeat-y;
}

#next,
#prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: #e6e6e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}

#next:hover,
#prev:hover {
  background-color: #ccc;
}

#next {
  right: 0;
}

#prev {
  left: 0;
}

#next.disabled,
#prev.disabled {
  opacity: 0.2;
}

#timeline a {
  color: #284f96;
  text-decoration: none;
  transition: 0.5s;
}

#timeline a:hover,
#timeline a.selected {
  color: #0632ad;
  font-weight: 600;
}

#timeline h1,
#timeline h2,
#timeline h4,
#timeline h5,
#timeline h6 {
  text-align: center;
  color: #ccc;
  margin-bottom: 5px;
}

#timeline h1 {
  font-size: 18px;
}

#timeline h2 {
  font-size: 14px;
}

#next i,
#prev i {
  font-size: 20px;
  color: #333;
  pointer-events: none;
}

#dates li a[href="#2002"] {
  display: none;
}

.monthnew {
  font-weight: bold;
  font-size: 16px;
}


/*===============================*/


/*==================Research================*/
 /*  .banner-research {
      background: url('../images/reasearch-banner.webp') no-repeat center center/cover;
      height: 100vh;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .overlay-text {
      position: absolute;
      top: 30px;
      font-size: 28px;
      color: #fff;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      text-decoration: underline;
      cursor: pointer;
    }

    .tabs-container {
      display: grid;
      grid-template-columns: repeat(3, 160px);
      grid-template-rows: repeat(2, 120px);
      gap: 25px;
      z-index: 2;
    }

    .tab-research {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-weight: bold;
      padding: 10px;
      transition: transform 0.3s ease, background 0.3s ease;
      cursor: pointer;
    }

    .tab-research:hover {
      transform: translateY(-8px) scale(1.05);
      background-color: #ffdd57;
    }

    @media (max-width: 768px) {
      .tabs-container {
        grid-template-columns: repeat(2, 140px);
        grid-template-rows: auto;
      }

      .overlay-text {
        font-size: 20px;
        top: 20px;
      }
    }*/

  .banner-research {
  position: relative;
  background: url('../images/reasearch-banner.webp') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
  z-index: 1;
  overflow: hidden;
}

.banner-research::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark semi-transparent overlay */
  z-index: -1;
}

.overlay-text {
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  /* text-decoration: underline; */
  margin-bottom: 30px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  margin-top: -40px;
}

.tabs-container {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  gap: 180px;
  z-index: 2;
}

.tab-research {
background: rgb(255 255 255 / 24%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 50px 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    color: #ffffff;
    height: 150px;
}

.tab-research:hover {
  transform: translateY(-8px) scale(1.05);
  background: #009846;
  color: #fff;
}

.tab-research-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.tab-research-text {
  font-weight: 600;
  font-size: 22px;

}
.mrtopleftbreeder{
  margin-left:31%;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .tabs-container {
    grid-template-columns: repeat(2, 150px);
  }

  .tab-research {
    padding: 20px 15px;
  }

  .overlay-text {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .tabs-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

a{
  text-decoration: none !important;
}
/*==================Research================*/

/*===============Research-detailsarea=============*/
  .heroreaserch {
     /* background: url('your-background.jpg') center center/cover no-repeat;*/
      height: 500px;
     /* display: flex;*/
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      box-sizing: border-box;
      position: relative;
    }

    .heroreaserch h1 {
   /*  font-size: 48px;
   
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #fff;*/
 font-size: 3.5rem;
         font-weight: bold;
         color: #fff;
         text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    }
 .heroreaserch h2 {
     font-size:54px;
   /* background: rgb(255 255 255 / 79%);*/
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 600;
    }
    .heroreaserch span {
      color:#0632ad;
      font-weight: bold;
    }

   .inforeaserch-section {
  padding: 70px 0px 50px 0px;
/*  display: flex;
  flex-wrap: wrap;*/
  justify-content: space-around;
  gap: 40px;
}

.inforeaserch-column {
/*flex: 1 1 250px;
    max-width: 280px;*/
    padding-left: 15px;
    border-left: 3px solid #0632ad05;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    padding: 20px;

  }

.inforeaserch-column h4 {
  font-size: 18px;
  font-weight: bold;
  color: #0632ad;
  margin-bottom: 12px;
  position: relative;
 
}



.inforeaserch-column p {
  color: #444;
  margin: 8px 0;
  font-size: 14px;
  padding-left: 8px;
  position: relative;
}

.inforeaserch-column p::before {
content: "➤";
    position: absolute;
    left: -8px;
    color: #0632ad;
    font-size: 10px;
    top: 0;
}

   .inforeaserch-section1 {
  padding: 70px 0px 50px 0px;
/*  display: flex;
  flex-wrap: wrap;*/
  justify-content: space-around;
  gap: 40px;
}

.inforeaserch-column1 {
/*flex: 1 1 250px;
    max-width: 280px;*/
    padding-left: 15px;
    border-left: 3px solid #0632ad05;
  background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    padding: 20px;
}

.inforeaserch-column1 h4 {
  font-size: 18px;
  font-weight: bold;
  color: #0632ad;
  margin-bottom: 12px;
  position: relative;
 
}



.inforeaserch-column1 p {
  color: #444;
  margin: 8px 0;
  font-size: 14px;
  padding-left: 8px;
  position: relative;
}

.inforeaserch-column1 p::before {
    content: "➤";
    position: absolute;
    left:48px;
    color: #0632ad;
    font-size: 10px;
    top: 2px;
} 
    .overlay-heroreaserch{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
    }
    @media (max-width: 768px) {
      .inforeaserch-section {
        flex-direction: column;
        align-items: center;
      }

      .heroreaserch h1 {
        font-size: 22px;
        padding: 15px 20px;
      }
    }
  .br{
    height: 500px;
  }
  .lr{
 height: 352px;
  }
  .fr{
      height: 232px;}

 .hr{
  height: 335px;
 }
 .dr{
  height: 236px;
 }
 .newtextreamrtop{
  margin-top: 12px;
 }
 .hatcherymrleft{
  margin-left: 7% !important;
}
/*===============Research-detailsarea=============*/


/*====================advisory-section====================*/
.servicesadv-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.leftadv-column {
  flex: 1;
  min-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.doctor-image {
      max-width: 100%;
    height: 500px;
    border-radius: 5px;
    margin-top: -69%;
}

.rightadv-column {
  flex: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px; /* spacing between cards */
}

.rightadv-column h2 {
  font-size: 28px;
  color: #333;
 font-weight: 800;

}

.rightadv-column h2 span {
  color: #c1272d;
}

.serviceadv {
  width: 100%;
}

.serviceadv h4 {
  margin: 0;
  padding: 15px;
  font-size: 14px;
  color: #0632ad;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  width: 100%;             /* ensure all cards are equal width */
  box-sizing: border-box;  /* include padding + border in width */
  cursor: pointer;
}

.serviceadv h4:hover {
  background-color: #0632ad;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #2e5e88;
}

.serviceadv p {
  margin: 5px 0 0;
  color: #555;
  font-size: 14px;
}
.serviceadv h4 i {
  margin-right: 10px;
  color: #2e5e88;
  transition: color 0.3s ease;
}

.serviceadv h4:hover i {
  color: #fff;
}
/* Hide paragraphs by default */
.paragraph {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.blue_backarea {
    background: #0632ad;
    opacity: 1;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 89px;
    z-index: 1000;
    right: 40px;
}
.blue_backarea i {
    color:#fff;
    line-height: 30px;
    font-size: 20px;
}
/* When checkbox is checked, show the paragraph */
input[type="checkbox"]:checked + label + .paragraph {
  max-height: 500px; /* or large enough to fit content */
}
/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .servicesadv-section {
    flex-direction: column;
  }

  .leftadv-column,
  .rightadv-column {
    min-width: 100%;
    padding: 10px;
  }

  .serviceadv h4 {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .leftadv-column, .rightadv-column {
    flex: 100%;
    min-width: 100%;
    padding: 10px;
  }

  .serviceadv h4 {
    font-size: 16px;
  }
}
.agivet-advisorypara{
      font-size: 16px;
    color: #555;
   
   
    line-height: 28px;
}
/*====================advisory-section====================*/

/*====================agrivet-school======================*/



    .top-linksag {
    /*  display: flex;*/
      justify-content: flex-start;
      gap: 20px;
      font-size: 19px;
      margin-bottom: 40px;
      margin-top: 50px;
    }

    .top-linksag a {
      text-decoration: none;
      color: #0632ad;
      display: flex;
      align-items: center;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .top-linksag i {
      
      margin-right: 5px;
    }

    .headerag {
      text-align: center;
      margin-bottom: 60px;
    }

    .headerag h2 {
      font-size: 28px;
      color:#0632ad;
      font-weight: 700;
    }

    .headerag .highlight {
      color: #004aad;
    }

    .section-flexag {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      margin-bottom: 50px;
    }

    .sectionag {
      flex: 1;
      min-width: 300px;
    }

    .sectionag h3 {
     font-size: 23px;
    margin-bottom: 10px;
    color: #1e2a5a;
    position: relative;
    font-weight: 600;
    }

    .sectionag h3::after {
      content: "";
      display: block;
      width: 40px;
      height: 3px;
      background: #0a58ca;
      margin-top: 8px;
      border-radius: 2px;
    }

    .sectionag p {
      margin-top: 15px;
      color: #555;
      line-height: 30px;
    }

    .sectiona p b {
      color: #000;
    }

    .program-sectionag {
    /*  text-align: center;
      margin-bottom: 70px;*/
     /* background-color: #fff;
      box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
      padding: 30px 10px;*/
      margin-bottom: 70px;
      margin-left: 39px;
    }

    .program-sectionag h3 {
     font-size: 26px;
    color: #1e2a5a;
    margin-bottom: 15px;
    font-weight: 600;
    }

    .program-sectionag ul {
      text-align: left;
      display: inline-block;
      margin: 0 auto;
      padding-left: 20px;
      font-size: 16px;
      color: #333;
    }

    .program-sectionag li {
      margin-bottom: 10px;
      position: relative;
    }

    .program-sectionag i {
     
      color: #0a58ca;
      font-weight: bold;
      margin-right: 10px;
    }

    .footer-noteag {
         text-align: center;
    font-size: 17px;
    color: #555;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 60px;
    margin-bottom: 40px;
    }

    .footer-noteag b {
      color: #0632ad;
    }
/*====================agrivet-school======================*/


/*=====================agrivet-life-science===================*/
/*.heroreaserchlifescience {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #eaf7fd 0%, #ffffff 100%);
  overflow: hidden;
}

.heroreaserchlifescience::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="1" d="M0,192L60,170.7C120,149,240,107,360,106.7C480,107,600,149,720,165.3C840,181,960,171,1080,160C1200,149,1320,139,1380,133.3L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  z-index: 1;
  border-top-left-radius: 100% 80px;
  border-top-right-radius: 100% 80px;
}
*/
.heroreaserchlifescience {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #eaf7fd 0%, #ffffff 100%);
  overflow: hidden;
}

.heroreaserchlifescience::after {
/*  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 221px;
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'><path fill='%23ffffff' fill-opacity='1' d='M0,224L60,218.7C120,213,240,203,360,197.3C480,192,600,192,720,197.3C840,203,960,213,1080,197.3C1200,181,1320,139,1380,117.3L1440,96L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'/></svg>") no-repeat bottom center;
  background-size: cover;
  z-index: 1;
  filter: drop-shadow(0 -2px 6px rgba(0, 0, 0, 0.1));*/
 content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px; /* Slightly increased height */
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'><path fill='%23ffffff' fill-opacity='1' d='M0,200L60,186.7C120,173,240,147,360,144C480,141,600,171,720,186.7C840,203,960,213,1080,197.3C1200,181,1320,139,1380,117.3L1440,96L1440,320L0,320Z'/></svg>") no-repeat bottom center;
  background-size: cover;
  z-index: 1;
  filter: drop-shadow(0 -2px 6px rgba(0, 0, 0, 0.05));
}
.heroreaserchlifescience h1 {
     font-size: 48px;
   /* background: rgb(255 255 255 / 79%);*/
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #fff;
    top: -60px;
    }
.newlifeback{
      background-color: #fff;
   /* position: relative;
    top: -16px;
    z-index: 1000;*/
    margin-top: 80px;
    margin-bottom: 80px;
}

 /*  .steps-container {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .step {
      width: 220px;
      cursor: pointer;
    }

    .step .circle {
      width: 220px;
      height: 220px;
      margin: 0 auto 20px;
      border-radius: 50%;
  
      background: #2c3e50;  
      background: -webkit-linear-gradient(to right, #3498db, #2c3e50);  
      background: linear-gradient(to right, #3498db, #2c3e50);
      border: 3px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step:hover .circle {
      transform: scale(1.08);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .step .circle img {
      width: 60px;
      height: 60px;
    }

    .label {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
      text-align:center;
    }

    .dropdown {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      font-size: 14px;
      color: #555;
      padding: 0 10px;
      text-align:center;
    }

    .step.active .dropdown {
      max-height: 150px;
      margin-top: 10px;
    }*/
    /*.steps-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  padding-top: 60px;
}

.step {
  width: 340px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
}

.step .circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5dade2, #2c3e50);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step .circle::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: linear-gradient(45deg, #7fb3d5, #1c2833);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  border-radius: 50%;
}

.step:hover .circle::after {
  opacity: 0.2;
}

.step .circle img {
  width: 70px;
  height: 70px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.step:hover .circle img {
  transform: scale(1.1);
}

.label {
  font-size: 18px;
  font-weight: 600;
  color: #1f2f46;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.4;
}

.dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: #555;
  text-align:justify;
  padding: 0 15px;
  line-height: 1.6;
}

.step.active .dropdown {
  max-height: 400px;
  margin-top: 10px;
}
*/

.serviceBox {
    text-align: center;
    padding-top: 10px;
}

.serviceBox .service-icon {
    color: #fff;
    background: #fff;
    font-size: 45px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.serviceBox .service-icon:before,
.serviceBox .service-icon:after {
    content: "";
    background: linear-gradient(to right, #f09119 50%, transparent 50%);
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    transition: all ease 0.8s;
}
.serviceBox:hover .service-icon:before,
.serviceBox:hover .service-icon:after {
    transform: rotateZ(180deg);
}
.serviceBox:hover .service-icon {
    box-shadow: -5px 1px 5px rgba(0, 0, 0, 0.2);
}

.serviceBox .service-icon:after {
    background: #f09119;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}
.serviceBox {
    border: 1px solid #e5e4e4;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    position: relative;
    z-index: 1;
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); */
    height: 283px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.serviceBox .title {
    color: #f1921a;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.serviceBox .description {
    color: #777;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 0;
}

.serviceBox.red .service-icon:before {
    background: linear-gradient(to right, #e34a3a 50%, transparent 50%);
}
.serviceBox.red .service-icon:after {
    background: #e34a3a;
}
.serviceBox.red .title {
    color: #e34a3a;
}

.serviceBox.blue .service-icon:before {
    background: linear-gradient(to right, #0632ad 50%, transparent 50%);
}
.serviceBox.blue .service-icon:after {
    background: #0632ad;
}
.serviceBox.blue .title a {
    color: #0632ad !important;
    font-weight: 700;
    line-height: 25px;
}

.serviceBox.green .service-icon:before {
    background: linear-gradient(to right, #a1c52d 50%, transparent 50%);
}
.serviceBox.green .service-icon:after {
    background: #a1c52d;
}
.serviceBox.green .title {
    color: #a1c52d;
}

@media only screen and (max-width: 990px) {
    .serviceBox {
        margin: 0 0 30px;
    }
}

.servnnimg {
    width: 47px;
}
.serviceareaoffer {
    margin-top: 130px;
    margin-bottom: 80px;
}
.agrilifepart{
  margin-top: 70px;
}

/*    .agrilife-wrapper {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .agrilife {
      width: 250px;
      background: #ffffff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
    }

    .circle-tab {
      position: absolute;
      top: -15px;
      left: -15px;
      padding: 8px 10px;
      background-color: #008080;
      border-radius: 20px;
      color: white;
      font-weight: bold;
      font-size: 14px;
      z-index: 2;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .agrilife.teal .circle-tab {
      background-color: #008080;
    }

    .agrilife.orange .circle-tab {
      background-color: #f79e1b;
    }

    .agrilife.red .circle-tab {
      background-color: #e4572e;
    }

    .icon {
      font-size: 36px;
      text-align: center;
      margin-bottom: 10px;
    }

    .agrilife h3 {
      text-align: center;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }

    .agrilife.teal h3 {
      color: #008080;
    }

    .agrilife.orange h3 {
      color: #f79e1b;
    }

    .agrilife.red h3 {
      color: #e4572e;
    }

    .agrilife-content {
      text-align: center;
      font-size: 14px;
      color: #555;
      margin-top: 10px;
      display: none;
    }

    .dots {
      margin-top: 10px;
      font-size: 20px;
      color: inherit;
      display: none;
    }

    .agrilife.open .agrilife-content,
    .agrilife.open .dots {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .agrilife::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: 0;
  transition: 0.3s ease;
}

.agrilife.teal::before {
  background-color: #008080;
}

.agrilife.orange::before {
  background-color: #f79e1b;
}

.agrilife.red::before {
  background-color: #e4572e;
}

.agrilife > * {
  position: relative;
  z-index: 1;
}*/
/*.agrilife-wrapper {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
  justify-content: center;
}

.agrilife {
  width:256px;
  height: 280px;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}


.agrilife::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: 0;
  transition: 0.3s ease;
}
.agrilife.teal::before {
   background-color: #0074D9;
}
.agrilife.orange::before {
  background-color: #00BFFF;
}
.agrilife.red::before {
 background-color: #4169E1;
}


.card-content {
  position: relative;
  background: #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 1;
}

.circle-tab {
  position: absolute;
  top: -12px;
  left: -12px;
  padding: 8px 18px;
  background-color: #008080;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
.circle-tab img{
  width: 47px;
    margin-top: 10px;
}

.agrilife.teal .circle-tab {
   background-color: #0074D9;
}
.agrilife.orange .circle-tab {
  background-color: #00BFFF;
}
.agrilife.red .circle-tab {
  background-color: #4169E1;
}

.icon {
  font-size: 40px;
  margin-bottom: 12px;
  text-align: center;
}


.agrilife h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.agrilife.teal h3 {
  color: #0074D9;
}
.agrilife.orange h3 {
  color: #00BFFF;
}
.agrilife.red h3 {
  color: #4169E1;
}


.agrilife-content {
  text-align:justify;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  display: none;
}
.dots {
  margin-top: 10px;
  font-size: 20px;
  color: inherit;
  display: none;
}
.agrilife.open {
  height: auto; 
  align-items: stretch;
}

.agrilife.open .agrilife-content,
.agrilife.open .dots {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
*/
.agrilife-wrapper {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.agrilife {
  width: 250px;
  height: 280px;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agrilife::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: 0;
  transition: 0.3s ease;
}

.agrilife.blue1::before {
  background-color: #1e88e5;
}
.agrilife.blue2::before {
  background-color: #1565c0;
}
.agrilife.blue3::before {
  background-color: #0d47a1;
}

.card-content {
  position: relative;
  background: #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 1;
}

.circle-tab {
  position: absolute;
    top: -26px;
    left: -16px;
    padding: 8px 18px;
    background-color: #1e88e5;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    width: 68px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle-tab img {
    width: 31px;
    margin-top: 10px;
}
.agrilife.blue1 .circle-tab {
  background-color: #1e88e5;
}
.agrilife.blue2 .circle-tab {
  background-color: #1565c0;
}
.agrilife.blue3 .circle-tab {
  background-color: #0d47a1;
}

/*.agrilife h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}*/
.agrilife h3 {
  text-align:left;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease, margin-top 0.3s ease;
}


.agrilife.open h3 {
  margin-top: 20px; 
}
.agrilife.blue1 h3 {
  color: #1e88e5;
}
.agrilife.blue2 h3 {
  color: #1565c0;
}
.agrilife.blue3 h3 {
  color: #0d47a1;
}

.agrilife-content {
  text-align: left;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  display: none;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  padding: 12px;
}

.agrilife.open .agrilife-content {
  display: block;
  animation: fadeIn 0.3s ease;
}
.agrilife.open {
  height: auto; 
  align-items: stretch;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.newbackgroundaddlife{
  background-repeat: no-repeat !important;
    background-size: cover !important;
}

/*=====================agrivet-life-science===================*/


/*=====================General-toxicity=======================*/
 .contentagrilife {
      display: flex;
      gap: 40px;
      margin-bottom: 30px;
      flex-wrap: wrap;
      margin-top: 50px;
    }

    .image-sectionagrilife img {
      width: 400px;
      border: 1px solid #ccc;
     
    }

    .image-captionagrilife {
      font-size: 13px;
      text-align: center;
      margin-top: 5px;
      color: #888;
    }

    .text-sectionagrilife {
      flex: 1;
      margin-top: 20px;
    }

    .text-sectionagrilife h2 {
      color: #0056b3;
      margin-bottom: 10px;
      font-size: 25px;
      font-weight: 600;
    }

    .text-sectionagrilife p {
      line-height: 1.6;
      text-align: justify;
    }

   .accordion {
      border-top: 1px solid #ddd;
    }

    .accordion-header {
      width: 100%;
      background-color: #009846;
      color: white;
      padding: 15px 20px;
      border: none;
      outline: none;
      text-align: left;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s ease;
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #ffffffcc;
    }

    .accordion-header:hover {
      background-color: #009846;
    }

    .accordion-header.active {
      background-color: #009846;
    }

    .accordion-icon {
      font-size: 18px;
      margin-left: 10px;
      transition: transform 0.3s ease;
    }

    .accordion-header.active .accordion-icon {
      transform: rotate(180deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background-color: #f5f5f5;
      transition: max-height 0.3s ease;
      padding: 0 20px;
    }

    .accordion-content p {
      margin: 15px 0;
    }
    .accordion{
      margin-bottom: 50px;
    }
/*=====================General-toxicity=======================*/
/*==========================================================*/
.textnewcener{
  text-align: center;
}
/*==========================================================*/
/*====================Scientific publications===================*/
.Insights-banner {
  position: relative;
  height: 250px;
 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.Insights-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
 /* background: rgba(0, 100, 100, 0.6);*/
 background-color: rgba(0, 0, 0, 0.5);
}

.Insights-banner.overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.Insights-banner h1 {
 font-size: 54px;
    /* background: rgb(255 255 255 / 79%); */
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #fff;
   
    font-weight: 600;
}

.Insights-banner p {
margin-top: -13px;
    font-size: 22px;
    color: #fff;
    position: relative;
}

.Insights-banner p a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.Insights-banner p a:hover {
  text-decoration: underline;
}

    .main-wrapperin {
      display: flex;
      width: 100%;
      min-height: 300px;
      /*background: linear-gradient(to right, #f3f1ed 35%, #ffffff 65%);*/
      margin: 60px 0px ;
    }

    /* Left Column */
    .left-boxin {
      width: 80%;
      background: url('https://via.placeholder.com/400x300.png?text=Stairs+Image') no-repeat center center;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .left-contentin {
      background: rgba(255, 255, 255, 0.9);
      padding: 20px 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .left-contentin h3 {
      font-size: 22px;
      font-weight: 600;
      color: #2c3e50;
    }

    /* Right Column */
    .right-boxin {
      width: 65%;
      overflow: hidden;
      position: relative;
      padding: 20px 40px;
      background: #ffffff;
      top: 65px;
    }

    .carousel-wrapperin {
      position: relative;
    }

    .carouselin {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;
    }

    .carouselin::-webkit-scrollbar {
      display: none;
    }

    .cardin {
      min-width: 220px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      border: 1px solid #e6e6e6;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .cardin:hover {
      transform: translateY(-6px);
    }

    .cardin img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    .cardin-content {
      text-align: center;
      padding: 15px;
    }

    .cardin-content h4 {
      font-size: 15px;
      font-weight: 700;
      color: #1e3a8a;
    }

    .cardin-content p {
      font-size: 13px;
      color: #666;
      margin: 6px 0;
    }

    .book-btn {
      display: inline-block;
      margin-top: 8px;
      padding: 8px 16px;
      font-size: 13px;
      background: #0632ad;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .book-btn:hover {
      background: #5b21b6;
      color: #fff;
    }

    .arrow-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 2;
    }

    .arrow-btn:hover {
      background: #f0f0f0;
    }

    .arrow-left {
      left: 0;
    }

    .arrow-right {
      right: 0;
    }
/*====================Scientific publications===================*/

/*=====================gallery======================*/
.gallerybreadcum_mainoutsection {
    background-image: url(../images/gallery-img.jpg);
    height: 450px;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.gallerybreadcum_mainoutsection::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #0000002e;
}
.imagegallery_dateoutsection {
    margin: 50px 0px 0px 0px;
}
.section_headingtextdesign {
    color: #0632ad;
    margin: 0px;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
.imggallery_outsectionx {
    margin: 30px 0px 0px 0px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),
        inset -5px -5px 5px rgba(255, 255, 255, 0.5),
        5px 5px 5px rgba(0, 0, 0, 0.05), -5px -5px 5px rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 10px 10px;
    background: #fff;
}
.imggallery_outsectionx1 {
    background: rgb(248, 248, 248);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 10px;
    position: relative;
}
.img_gallerydesign {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.glybox_surgery {
    position: absolute;
    top: 20px;
    left: 20px;
}
.glbblg_hdngtext {
    color: #ffffff;
    background-color: #f7c600;
    width: 110px;
    font-size: 13px;
    text-align: center;
    height: 35px;
    border-radius: 30px;
    line-height: 35px;
}
.glbblg_hdngtext i {
    padding: 0px 2px 0px 0px;
}
.view_imggallerybtndesign {
    background: #0632ad;
    width: 170px;
    height: 45px;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    top: 85%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.view_imggallerybtndesign a {
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
}
.view_imggallerybtndesign i {
    margin: 0px 0px 0px 5px;
}
.imagegallery_dateoutsection {
    margin: 50px 0px 0px 0px;
}
.imggallery_outsectionx {
    margin: 30px 0px 0px 0px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),
        inset -5px -5px 5px rgba(255, 255, 255, 0.5),
        5px 5px 5px rgba(0, 0, 0, 0.05), -5px -5px 5px rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 10px 10px;
    background: #fff;
}
.imggallery_outsectionx1 {
    background: rgb(248, 248, 248);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 10px;
    position: relative;
}
.img_gallerydesign {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.glybox_surgery {
    position: absolute;
    top: 20px;
    left: 20px;
}
.glbblg_hdngtext {
    color: #ffffff;
    background-color: #f7c600;
    width: 110px;
    font-size: 13px;
    text-align: center;
    height: 35px;
    border-radius: 30px;
    line-height: 35px;
}
.glbblg_hdngtext i {
    padding: 0px 2px 0px 0px;
}
.view_imggallerybtndesign {
    background: #1e8fd0;
    width: 150px;
    height: 45px;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 75%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/*=====================gallery======================*/
.leftteammnl{
  position: relative;
  left: 110%;
}
.herparagraph-new{
    color: #fff;
    position: relative;
    z-index: 1000;
    font-size: 20px;
    top: 20px;
   
    font-weight: 600;
}

/*=========================*/
.lab-box {
  transition:!important;
}