@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.nano-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 5%;
  overflow: hidden;
  background: linear-gradient(135deg, #08504a 0%, #0a625b 50%, #063f3a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(6, 56, 52, 0.92), rgba(8, 80, 74, .92)), url(../img/nanobg.jpg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-content {
  width: 55%;
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-tag {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero-content h1 span {
  color: #ff4221;
}

.hero-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #ffd54f;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.9;
  max-width: 700px;
  color: #dbe7f3;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
}

.btn-primary {
  background: #00d4ff;
  color: #001c30;
}

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

.btn-secondary {
  border: 2px solid #00d4ff;
  color: #fff;
}

.btn-secondary:hover {
  background: #00d4ff;
  color: #001c30;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.service-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 15px;
  padding: 18px 12px;
  text-align: center;
  transition: .4s;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #00d4ff;
  color: #001f38;
}

.service-card i {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.service-card span {
  font-size: 14px;
  font-weight: 600;
}

.hero-image {
  width: 40%;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  animation: float 4s ease-in-out infinite;
  background-color: #c3ebea;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media(max-width:991px) {

  .nano-hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    margin-top: 40px;
  }
}

@media(max-width:576px) {

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

.floating-actions {
  position: fixed;
  right: 25px;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.float-call,
.float-whatsapp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: .5s;
}

/* Call */

.float-call {
  background: #ec4528;
  color: #fff;
  box-shadow: 0 10px 30px rgba(236, 69, 40, .4);
}

/* WhatsApp */

.float-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
}

.float-call i,
.float-whatsapp i {
  font-size: 28px;
  z-index: 2;
  position: relative;
}

/* Rotating Border */

.float-call::before,
.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  animation: rotate 3s linear infinite;
}

.float-call::before {
  background: conic-gradient(transparent,
      #fff,
      transparent,
      #fff);
}

.float-whatsapp::before {
  background: conic-gradient(transparent,
      #fff,
      transparent,
      #fff);
}

.float-call::after,
.float-whatsapp::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
}

.float-call::after {
  background: #ec4528;
}

.float-whatsapp::after {
  background: #25D366;
}

/* Hover */

.float-call:hover,
.float-whatsapp:hover {
  transform: translateY(-8px) scale(1.12);
}

/* Pulse */

.float-call {
  animation: pulseCall 2s infinite;
}

.float-whatsapp {
  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 69, 40, .6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(236, 69, 40, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(236, 69, 40, 0);
  }
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@media(max-width:768px) {

  .floating-actions {
    right: 15px;
    bottom: 20px;
  }

  .float-call,
  .float-whatsapp {
    width: 50px;
    height: 50px;
  }

  .float-call i,
  .float-whatsapp i {
    font-size: 24px;
  }
}

.nano-about-wrapper {
  padding: 100px 0;
  background: #f7faf9;
  overflow: hidden;
}

.nano-about-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.nano-about-image {
  width: 48%;
  position: relative;
}

.nano-about-image img {
  width: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
  transition: .5s;
}

.nano-about-image:hover img {
  transform: translateY(-10px);
}

.nano-shape-bg {
  position: absolute;
  width: 350px;
  height: 350px;
  background: #ec4528;
  border-radius: 50%;
  top: -50px;
  left: -50px;
  opacity: .12;
}

.nano-floating-card {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: #fff;
  padding: 18px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.nano-floating-card i {
  color: #ec4528;
  font-size: 28px;
}

.nano-floating-card span {
  font-weight: 600;
  color: #08504a;
}

.nano-about-content {
  width: 52%;
}

.nano-about-tag {
  display: inline-block;
  background: #08504a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.nano-about-content h2 {
  font-size: 48px;
  line-height: 1.2;
  color: #08504a;
  margin-bottom: 25px;
  font-weight: 700;
}

.nano-about-content h2 span {
  color: #ec4528;
}

.nano-about-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.nano-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.nano-feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: .4s;
  border: 1px solid #eee;
}

.nano-feature-box:hover {
  background: #08504a;
  transform: translateY(-8px);
}

.nano-feature-box i {
  font-size: 30px;
  color: #ec4528;
  margin-bottom: 12px;
}

.nano-feature-box h4 {
  color: #08504a;
  font-size: 18px;
}

.nano-feature-box:hover h4 {
  color: #fff;
}

.nano-about-btn {
  display: inline-block;
  margin-top: 35px;
  background: #ec4528;
  color: #fff;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
}

.nano-about-btn:hover {
  background: #08504a;
  transform: translateY(-5px);
}

@media(max-width:991px) {

  .nano-about-container {
    flex-direction: column;
  }

  .nano-about-image,
  .nano-about-content {
    width: 100%;
  }

  .nano-about-content h2 {
    font-size: 38px;
  }

}

@media(max-width:576px) {

  .nano-about-content h2 {
    font-size: 30px;
  }

  .nano-feature-grid {
    grid-template-columns: 1fr;
  }

  .nano-floating-card {
    right: 0;
    left: 0;
    margin: auto;
    width: 90%;
  }

}

.nano-services-area {
  position: relative;
  padding: 60px 6%;
  background:
    linear-gradient(rgba(8, 80, 74, .92),
      rgba(8, 80, 74, .92)),
    url('../img/nanobg.jpg');

  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.nano-services-header {
  text-align: center;
  max-width: 1300px;
  margin: auto;
  margin-bottom: 60px;
  color: #fff;
}

.nano-services-header span {
  color: #ec4528;
  font-weight: 700;
  letter-spacing: 2px;
}

.nano-services-header h2 {
  font-size: 48px;
  margin: 15px 0;
  color: #ffffff;
}

.nano-services-header p {
  color: #ffffff;
  line-height: 1.8;
}

.nano-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.nano-service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: .4s;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.nano-service-card:hover {
  transform: translateY(-12px);
}

.nano-service-image {
  height: 250px;
  overflow: hidden;
}

.nano-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.nano-service-card:hover img {
  transform: scale(1.1);
}

.nano-service-content {
  padding: 25px;
}

.nano-service-content h3 {
  color: #08504a;
  font-size: 26px;
  margin-bottom: 12px;
}

.nano-service-content p {
  color: #666;
  line-height: 1.8;
}

@media(max-width:1200px) {
  .nano-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {
  .nano-services-grid {
    grid-template-columns: 1fr;
  }
}

/*==============================
 SERVICES SECTION
==============================*/

.tera-services-section {
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.tera-services-heading {
  text-align: center;
  margin-bottom: 20px;
}

.tera-services-heading span {
  display: inline-block;
  padding: 10px 25px;
  background: #08504a;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
}

.tera-services-heading h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tera-services-heading p {
  max-width: 750px;
  margin: auto;
  line-height: 1.9;
}

/* Cards */

.tera-service-card {
  background: linear-gradient(135deg, #062b1c, #0c4a43);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  transition: all .5s ease;
}

.tera-service-card::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  transition: .5s;
}

.tera-service-card:hover::before {
  transform: scale(1.5);
}

.tera-service-card:hover {
  transform: translateY(-12px);
  border-color: #00d4ff;
  box-shadow: 0 20px 50px rgba(0, 212, 255, .2);
}

/* Icon */

.tera-service-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #e53935);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.tera-service-icon i {
  font-size: 36px;
  color: #fff;
}

.tera-service-card:hover .tera-service-icon {
  animation: servicePulse 1.2s infinite;
}

@keyframes servicePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.tera-service-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.tera-service-card p {
  color: #c9d4e3;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* Floating Animation */

.tera-service-card:nth-child(odd) {
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Responsive */

@media(max-width:991px) {

  .tera-services-heading h2 {
    font-size: 40px;
  }

}

@media(max-width:767px) {

  .tera-services-section {
    padding: 70px 0;
  }

  .tera-services-heading h2 {
    font-size: 32px;
  }

}

/*=================================
 ENQUIRY FORM SECTION
=================================*/

.tera-enquiry-section {
  position: relative;
  padding: 60px 6%;
  background:
    linear-gradient(rgba(8, 80, 74, .92),
      rgba(8, 80, 74, .92)),
    url('../img/nanobg.jpg');

  background-size: cover;
  background-position: left;
  overflow: hidden;
}

.tera-enquiry-content span {
  display: inline-block;
      background: linear-gradient(135deg, #ff6b00, #e53935);
    color: var(--white);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tera-enquiry-content h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tera-enquiry-content p {
  color: #d0d9e8;
  line-height: 1.9;
  margin-bottom: 35px;
}

.tera-contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.tera-contact-info i {
  width: 60px;
  height: 60px;
      background: linear-gradient(135deg, #ff6b00, #e53935);
    color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 22px;
}

.tera-contact-info h5 {
  color: #fff;
  margin-bottom: 5px;
}

.tera-contact-info p {
  color: #d0d9e8;
  margin: 0;
}

/* Form */

.tera-enquiry-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.tera-enquiry-form .form-group {
  margin-bottom: 25px;
}

.tera-enquiry-form input,
.tera-enquiry-form select,
.tera-enquiry-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: none;
  outline: none;
  border-radius: 15px;
     background: rgb(255 255 255);
  color: #fff;
  font-size: 15px;
  transition: .4s;
}

.tera-enquiry-form input::placeholder,
.tera-enquiry-form textarea::placeholder {
  color: #252525;
}

.tera-enquiry-form input:focus,
.tera-enquiry-form select:focus,
.tera-enquiry-form textarea:focus {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px rgba(0, 212, 255, .3);
}

.tera-enquiry-form select option {
  color: #000;
}

.tera-submit-btn {
      background: linear-gradient(135deg, #ff6b00, #e53935);
    color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .4s;
}

.tera-submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, .35);
}

/* Responsive */

@media(max-width:991px) {

  .tera-enquiry-content {
    margin-bottom: 40px;
  }

  .tera-enquiry-content h2 {
    font-size: 36px;
  }

}

@media(max-width:767px) {

  .tera-enquiry-section {
    padding: 70px 0;
  }

  .tera-enquiry-form {
    padding: 25px;
  }

  .tera-enquiry-content h2 {
    font-size: 30px;
  }

}
/*=================================
 RESEARCH TEAM SECTION
=================================*/

.research-team-section{
    padding:60px 0;
    background:#f5f8fc;
    position:relative;
    overflow:hidden;
}

.research-team-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(0,188,212,.05);
    top:-150px;
    right:-150px;
}

.research-team-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(0,43,92,.05);
    bottom:-150px;
    left:-150px;
}

/* Heading */

.team-section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.team-section-title span{
    display:inline-block;
    background: #08504a;
    color:#fff;
    padding:10px 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.team-section-title h2{
    font-size:50px;
    color:#002b5c;
    font-weight:700;
    margin-bottom:20px;
}

.team-section-title p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* Card */

.research-team-card{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    margin-bottom:30px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.5s;
    border-top:5px solid #08504a;
}

.research-team-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* .research-team-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:0;
    left:0;
    bottom:0;
    background:linear-gradient(135deg,#002b5c,#08504a);
    opacity:.04;
    transition:.5s;
} */

.research-team-card:hover::before{
    height:100%;
}

/* Number */

.team-number{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:0 auto 25px;
    background:linear-gradient(135deg,#002b5c,#08504a);
    color:#fff;
    font-size:26px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,188,212,.25);
}

/* Content */

.research-team-card h3{
    color:#002b5c;
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
}

.research-team-card h5{
    color:#08504a;
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
}

.team-department{
    color:#444;
    font-weight:600;
    margin-bottom:8px;
}

.team-college{
    color:#777;
    line-height:1.8;
    min-height:70px;
}

/* Email */

.team-email{
    display:block;
    color:#08504a;
    font-weight:600;
    margin-top:15px;
    transition:.3s;
    word-break:break-word;
}

.team-email:hover{
    color:#002b5c;
}

/* Phone */

.team-phone{
    margin-top:10px;
    font-size:14px;
}

.team-phone a{
    color:#555;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.team-phone a:hover{
    color:#08504a;
}

/* Floating Animation */

.research-team-card{
    animation:floatCard 5s ease-in-out infinite;
}

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Responsive */

@media(max-width:991px){

.team-section-title h2{
    font-size:38px;
}

}

@media(max-width:767px){

.research-team-section{
    padding:70px 0;
}

.team-section-title h2{
    font-size:30px;
}

.research-team-card{
    padding:30px 20px;
}

.team-number{
    width:70px;
    height:70px;
    font-size:22px;
}

}
/*==================================
 PUBLISHING SERVICES
==================================*/

.publishing-services-section{
    padding:60px 0;
    background:#f7faff;
}

.publishing-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.publishing-title span{
    background:#08514b;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
}

.publishing-title h2{
    font-size:52px;
    font-weight:700;
    color:#002b5c;
    margin-bottom:20px;
}

.publishing-title p{
    color:#666;
    line-height:1.9;
}

/* Cards */

.publishing-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.5s;
    margin-bottom:30px;
    
}

.publishing-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.publishing-image{
    overflow:hidden;
}

.publishing-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.8s;
}

.publishing-card:hover .publishing-image img{
    transform:scale(1.1);
}

.publishing-content{
    padding:30px;
}

.publishing-content h3{
    color:#002b5c;
    font-size:28px;
    margin-bottom:15px;
}

.publishing-content p{
    color:#666;
    line-height:1.8;
}

.publishing-content ul{
    padding:0;
    margin:25px 0;
    list-style:none;
}

.publishing-content ul li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

.publishing-content ul li:before{
    content:"✓";
    color:#08514b;
    font-weight:700;
    margin-right:10px;
}

.service-price{
    font-size:34px;
    font-weight:700;
    color:#08514b;
    margin:25px 0;
}

.publish-btn{
    display:inline-block;
    padding:14px 35px;
    background: linear-gradient(135deg, #002b5c, #08514b);
    color:#fff;
    border-radius:50px;
    transition:.4s;
}

.publish-btn:hover{
    background:#08514b;
    color:#fff;
}

/* Custom Quote */

.custom-quote-box{
    margin-top:60px;
    background:linear-gradient(135deg,#002b5c,#08514b);
    padding:60px;
    text-align:center;
    border-radius:25px;
}

.custom-quote-box h3{
    color:#fff;
    font-size:36px;
    margin-bottom:15px;
}

.custom-quote-box p{
    color:#fff;
    max-width:800px;
    margin:0 auto 25px;
}

.custom-btn{
    display:inline-block;
    background:#fff;
    color:#002b5c;
    padding:15px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.custom-btn:hover{
    transform:translateY(-5px);
    background:#f5f5f5;
}

/* Responsive */

@media(max-width:991px){

.publishing-title h2{
    font-size:40px;
}

.custom-quote-box{
    padding:40px 25px;
}

}

@media(max-width:767px){

.publishing-services-section{
    padding:70px 0;
}

.publishing-title h2{
    font-size:32px;
}

}

.research-publications-section{
    padding:60px 0;
    background:#f7f9fc;
}

.publication-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.publication-heading span{
    color:#00bcd4;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.publication-heading h2{
    font-size:48px;
    color:#002b5c;
    margin:15px 0;
}

.publication-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    margin-bottom:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.publication-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.journal-badge{
    display:inline-block;
    background:#00bcd4;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.publication-card h3{
    color:#002b5c;
    font-size:24px;
    margin-bottom:15px;
}

.publication-card p{
    color:#666;
    line-height:1.8;
}

.publication-card a{
    display:inline-block;
    margin-top:15px;
    color:#00bcd4;
    font-weight:600;
}

.featured{
    background:linear-gradient(135deg,#002b5c,#00bcd4);
    color:#fff;
}

.featured h3,
.featured p{
    color:#fff;
}

.publication-highlight{
    margin-top:30px;
    background:#043632;
    padding:40px;
    border-radius:20px;
    color:#fff;
}

.publication-highlight h3{
    margin-bottom:20px;
    color:#fff;
}

.publication-highlight ul{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    list-style:none;
    padding:0;
}

.publication-highlight ul li{
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:30px;
}
.publication-gallery-section{
    padding:60px 0;
    background:#f2f2f2;
}

.publication-gallery-title{
    text-align:center;
    margin-bottom:60px;
}

.publication-gallery-title span{
    display:inline-block;
    padding:10px 25px;
    background:#00bcd4;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.publication-gallery-title h2{
    font-size:48px;
    font-weight:700;
    color:#002b5c;
    margin-bottom:15px;
}

.publication-gallery-title p{
    color:#666;
}

.publication-gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    margin-bottom:30px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    transition:.5s;
}

.publication-gallery-card img{
    width:100%;
    object-fit:cover;
    transition:1s;
}

.publication-gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.publication-gallery-card:hover img{
    transform:scale(1.08);
}

.publication-gallery-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    
    background:linear-gradient(
        to top,
        rgba(0,43,92,.7),
        rgba(0,0,0,0)
    );
    opacity:0;
    transition:.5s;
    z-index:1;
}

.publication-gallery-card:hover::before{
    opacity:1;
}

@media(max-width:991px){

.publication-gallery-title h2{
    font-size:38px;
}

.publication-gallery-card img{
    height:350px;
}

}

@media(max-width:767px){

.publication-gallery-section{
    padding:70px 0;
}

.publication-gallery-title h2{
    font-size:30px;
}

.publication-gallery-card img{
    height:300px;
}

}
/*==================================
 CONTACT ENQUIRY SECTION
==================================*/

.crystal-connect-section{
    padding:60px 0;
    background:#f7fbff;
    position:relative;
    overflow:hidden;
}

.crystal-connect-section::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:#eaf7ff;
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.crystal-connect-section::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:#eefaf6;
    border-radius:50%;
    bottom:-120px;
    left:-120px;
}

/* Left Content */

.crystal-contact-content{
    padding-right:40px;
}

.crystal-contact-content span{
    display:inline-block;
    background:#00bcd4;
    color:#fff;
    padding:10px 25px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.crystal-contact-content h2{
    font-size:48px;
    color:#002b5c;
    font-weight:700;
    margin-bottom:20px;
}

.crystal-contact-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

/* Contact Box */

.crystal-info-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:20px;
    border-radius:16px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
}

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

.crystal-info-box i{
    width:60px;
    height:60px;
    line-height:60px;
    text-align:center;
    border-radius:50%;
    background:#00bcd4;
    color:#fff;
    font-size:22px;
}

.crystal-info-box h5{
    margin-bottom:5px;
    color:#002b5c;
    font-weight:700;
}

.crystal-info-box a{
    color:#555;
    text-decoration:none;
}

.crystal-info-box a:hover{
    color:#00bcd4;
}

/* Form */

.crystal-form-wrapper{
    background:#ffffff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.crystal-form-group{
    margin-bottom:20px;
}

.crystal-form-group input,
.crystal-form-group select,
.crystal-form-group textarea{
    width:100%;
    border:1px solid #dde7ef;
    background:#f9fcff;
    padding:15px 20px;
    border-radius:12px;
    font-size:15px;
    color:#444;
    transition:.4s;
}

.crystal-form-group input:focus,
.crystal-form-group select:focus,
.crystal-form-group textarea:focus{
    border-color:#00bcd4;
    background:#fff;
    outline:none;
    box-shadow:0 0 0 4px rgba(0,188,212,.12);
}

.crystal-form-group textarea{
    resize:none;
}

.crystal-submit-btn{
    background:linear-gradient(135deg,#002b5c,#00bcd4);
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.4s;
}

.crystal-submit-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,188,212,.30);
}

/* Responsive */

@media(max-width:991px){

.crystal-contact-content{
    margin-bottom:40px;
    padding-right:0;
}

.crystal-contact-content h2{
    font-size:38px;
}

}

@media(max-width:767px){

.crystal-connect-section{
    padding:70px 0;
}

.crystal-contact-content h2{
    font-size:30px;
}

.crystal-form-wrapper{
    padding:25px;
}

}