/*====================================================

AMROS PROJECTS LLP
Premium Corporate Website
Style V2

======================================================*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

/*====================================================

ROOT

======================================================*/

:root {
  --primary: #005baa;

  --secondary: #1976d2;

  --dark: #081c34;

  --black: #101820;

  --text: #667085;

  --light: #f6f9fc;

  --white: #ffffff;

  --border: #e8eef5;

  --gradient: linear-gradient(135deg, #005baa, #0a84ff);

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 35px 80px rgba(0, 0, 0, 0.12);

  --radius: 24px;
}

/*====================================================

RESET

======================================================*/

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;

  font-size: 16px;

  color: var(--text);

  background: #fff;

  overflow-x: hidden;

  line-height: 1.8;
}

img {
  max-width: 100%;

  display: block;
}

ul {
  padding: 0;

  margin: 0;

  list-style: none;
}

a {
  text-decoration: none;

  transition: 0.4s;
}

section {
  padding: 60px 0;

  position: relative;
}

.container {
  max-width: 1320px;
}

/*====================================================

TYPOGRAPHY

======================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;

  font-weight: 800;

  color: var(--dark);

  line-height: 1.2;
}

.section-heading span {
  display: inline-block;

  padding: 10px 22px;

  background: #eaf5ff;

  border-radius: 50px;

  color: var(--primary);

  font-weight: 700;

  letter-spacing: 1px;

  font-size: 13px;

  margin-bottom: 16px;

  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 38px;

  margin-bottom: 22px;
}

.section-heading p {
  font-size: 17px;

  max-width: 650px;
}
.hero-sec-button a{
  color: #000 ;
text-decoration: none;
}
.contact-connect a{
  font-size: 16px;
    line-height: 1.9;
    color: #667085;
    text-decoration: none;
}
.contact-card:hover a{
  color:#fff;
}


/*====================================================

BUTTONS

======================================================*/

.btn-primary-custom {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 40px;

  background: var(--gradient);

  color: #fff;

  border: 2px solid #0468c5;

  border-radius: 60px;

  font-weight: 700;

  box-shadow: var(--shadow);

  transition: 0.4s;
}

.btn-primary-custom:hover {
  transform: translateY(-5px);

  color: #fff;
}

.btn-outline-custom {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 40px;

  border: 2px solid #fff;

  color: #fff;

  border-radius: 60px;

  margin-left: 15px;

  font-weight: 600;

  transition: 0.4s;
}

.btn-outline-custom:hover {
  background: #fff;

  color: var(--dark);
}

/*====================================================

LOADER

======================================================*/

.loader {
  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 999999;
}

.loader-ring {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  border: 6px solid #e8eef5;

  border-top: 6px solid var(--primary);

  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/*====================================================

TOPBAR

======================================================*/

.topbar {
  background: var(--dark);

  padding: 8px 0;

  color: #fff;

  font-size: 14px;
}

.top-contact {
  display: flex;

  gap: 35px;
}

.top-contact li {
  display: flex;

  align-items: center;

  gap: 8px;
}

.top-right {
  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 30px;
}

.social {
  display: flex;

  gap: 10px;
}

.social a {
  width: 35px;

  height: 35px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #fff;
}

.social a:hover {
  background: var(--primary);
}

/*====================================================

NAVBAR

======================================================*/

.amros-navbar {
  padding: 20px 0;

  transition: 0.4s;

  background: transparent;

  top: 49px;
}

.amros-navbar.scrolled {
  background: #fff;

  padding: 12px 0;

  box-shadow: var(--shadow);

  top: 0;
}

.navbar-brand img {
  height: 60px;
}

.navbar-nav {
  gap: 8px;
}

.nav-link {
  font-weight: 600;

  color: #fff;

  position: relative;
}

.amros-navbar.scrolled .nav-link {
  color: var(--dark);
}

.nav-link:hover{
    color: var(--primary) !important;
}

.nav-link.active{
    color: var(--primary) !important;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0px;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: 0.4s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.dropdown-menu {
  border: none;

  /* padding: 20px; */

  border-radius: 20px;

  box-shadow: var(--shadow-lg);
}

.dropdown-menu a {
  display: block;

  padding: 3px 10px;

  color: var(--dark);

  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: #f5f9fc;
}

/* Hide default Bootstrap caret */
.amros-navbar .dropdown-toggle::after {
  display: none !important;
}

/* Custom chevron rotate transition */
.amros-navbar .nav-link .bi-chevron-down {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Dropdown Hover behavior for screens >= 1200px (Desktop) */
@media (min-width: 1200px) {
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-nav .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-item.dropdown:hover .dropdown-toggle .bi-chevron-down {
    transform: rotate(180deg);
  }
}

/* Rotate chevron when dropdown is open on click (primarily mobile/tablet) */
.navbar-nav .nav-item.dropdown .dropdown-toggle.show .bi-chevron-down {
  transform: rotate(180deg);
}

.quote-btn {
  padding: 10px 15px;

  background: var(--gradient);

  color: #fff;

  border-radius: 60px;

  font-weight: 700;

  margin-left: 25px;
}

.quote-btn:hover {
  color: #fff;

  transform: translateY(-3px);
}

/*====================================================

HERO

======================================================*/

.hero {
  position: relative;

  padding-top: 180px !important;

  height: 100vh;

  overflow: hidden;

  display: flex;

  align-items: center;
}

.hero-bg {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;
}

.hero-bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(8, 28, 52, 0.92),
    rgba(8, 28, 52, 0.45)
  );
}

.hero-content {
  position: relative;

  z-index: 5;

  color: #fff;
}

.hero-tag {
  display: inline-block;

  padding: 8px 24px;

  font-size: 14px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(25px);

  border-radius: 60px;

  margin-bottom: 12px;

  font-weight: 600;

  letter-spacing: 1px;
}

.hero h1 {
  font-size: 52px;

  color: #fff;

  margin-bottom: 25px;
}

.hero h1 span {
  color: #57b4ff;
}

.hero p {
  font-size: 18px;

  color: #e6eef7;

  max-width: 620px;

  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;

  align-items: center;

  margin-bottom: 50px;
}

/*====================================================

HERO RIGHT
======================================================*/

.hero-right {
  position: relative;

  height: 720px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.hero-main-image {
  width: 540px;

  border-radius: 30px;

  box-shadow: var(--shadow-lg);

  position: relative;

  z-index: 2;

  animation: float 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(25px);

  padding: 18px;

  display: flex;

  align-items: center;

  gap: 16px;

  border-radius: 22px;

  box-shadow: var(--shadow);

  z-index: 5;

  transition: 0.4s;
}

.floating-card:hover {
  transform: translateY(-10px);
}

.floating-card img {
  width: 70px;

  height: 70px;

  border-radius: 18px;

  object-fit: cover;
}

.floating-card h5 {
  font-size: 18px;

  margin-bottom: 4px;

  color: var(--dark);
}

.floating-card span {
  font-size: 14px;

  color: var(--text);
}

.card-one {
  left: -15%;
  top: 18%;
}

.card-two {
  right: -15%;
  top: 65%;
}

/* .card-three {
  left: 60px;

  bottom: 40px;
} */

/*====================================================

HERO MINI COUNTER

======================================================*/

.hero-bottom {
  display: flex;

  gap: 40px;

  margin-top: 20px;
}

.hero-mini h3 {
  font-size: 32px;

  color: #fff;

  margin-bottom: 5px;
}

.hero-mini span {
  font-size: 14px;

  letter-spacing: 1px;

  color: #dce9f8;

  text-transform: uppercase;
}

/*====================================================

HERO COUNTER SECTION

======================================================*/

.hero-counter-section {
  background: var(--dark);

  padding: 80px 0;

  position: relative;

  z-index: 10;
}

/*====================================================

SCROLL INDICATOR

======================================================*/

.scroll-indicator {
  position: absolute;

  left: 50%;

  bottom: 30px;

  transform: translateX(-50%);

  z-index: 20;
}

.scroll-indicator span {
  display: block;

  width: 34px;

  height: 56px;

  border: 2px solid rgba(255, 255, 255, 0.7);

  border-radius: 50px;

  position: relative;
}

.scroll-indicator span::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 10px;

  width: 8px;

  height: 8px;

  background: #fff;

  border-radius: 50%;

  transform: translateX(-50%);

  animation: scroll 1.6s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;

    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;

    transform: translate(-50%, 22px);
  }
}

/*====================================================

ABOUT

======================================================*/

.about-section {
  background: #fff;
}

.about-images {
  position: relative;

  padding-right: 70px;
}

.about-images img {
  border-radius: 32px;

  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;

  right: 0;

  bottom: 50px;

  background: #fff;

  padding: 30px;

  border-radius: 24px;

  box-shadow: var(--shadow);

  text-align: center;

  width: 220px;
}

.experience-badge h2 {
  font-size: 44px;

  margin-bottom: 5px;

  color: var(--primary);
}

.experience-badge span {
  font-weight: 600;

  color: var(--text);
}

.about-features {
  margin-top: 45px;
}

.feature-box {
  display: flex;

  flex-direction: column;

  gap: 16px;

  padding: 24px;

  border-radius: 22px;

  background: #fff;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);

  height: 100%;

  transition: 0.35s;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-header {
  display: flex;

  align-items: center;

  gap: 16px;
}

.feature-icon {
  width: 50px;

  height: 50px;

  background: var(--gradient);

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;

  color: #fff;
}

.feature-box h5 {
  font-size: 20px;

  margin: 0;
}

.feature-box p {
  font-size: 15px;

  margin: 0;
}

.about-btn {
  margin-top: 45px;
}

/*====================================================

GROUP SECTION

======================================================*/

.group-section {
  background: var(--light);
}

.group-gallery img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 28px;

  box-shadow: var(--shadow);

  transition: 0.5s;
}

.group-gallery img:hover {
  transform: scale(1.03);
}

.group-list {
  margin-top: 24px;
}

.group-list li {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 4px;

  font-weight: 600;
}

.group-list i {
  color: var(--primary);

  font-size: 20px;
}

/*====================================================

DIVISION SECTION

======================================================*/

.division-section {
  background: #fff;
}

.division-card {
  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  height: 100%;
}

.division-card:hover {
  transform: translateY(-12px);
}

.division-image {
  overflow: hidden;
}

.division-image img {
  width: 100%;

  height: 250px;

  object-fit: cover;

  transition: 0.6s;
}
.division-card:hover img {
  transform: scale(1.1);
}

.division-content {
  padding: 20px;
}

.division-content span {
  display: inline-block;

  font-size: 40px;

  font-weight: 800;

  color: #005baa;


}

.division-content h4 {
  font-size: 22px;

  margin-bottom: 10px;
}

.division-content p {
  margin: 0;
}

/*====================================================

PRODUCT CATEGORY

======================================================*/

.product-category {
  background: #f8fbfd;
}

.product-box {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  height: 460px;

  box-shadow: var(--shadow);
}

.product-box img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.product-box:hover img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  padding: 35px;

  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.product-overlay h3 {
  color: #fff;

  font-size: 22px;

  margin-bottom: 15px;
}

.product-overlay a {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 30px;

  border-radius: 50px;

  background: #fff;

  color: var(--primary);

  font-weight: 700;

  transition: 0.35s;
}

.product-overlay a:hover {
  background: var(--primary);

  color: #fff;
}

/*====================================================

APPLICATIONS

======================================================*/

.applications-section {
  background: #fff;
}

.application-card {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  height: 100%;

  background: #fff;
}

.application-card:hover {
  transform: translateY(-10px);
}

.application-card img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.6s;
}

.application-card:hover img {
  transform: scale(1.08);
}

.application-content {
  padding: 15px;
}

.application-content i {
  width: 70px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 20px;

  background: var(--gradient);

  font-size: 22px;

  color: #fff;

  margin-bottom: 10px;
}

.application-content h4 {
  font-size: 20px;

  margin-bottom: 15px;
}

.application-content p {
  margin: 0;

  color: var(--text);
}

/*====================================================

WHY AMROS

======================================================*/

.why-amros {
  background: #f7fafd;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;

  border-radius: 32px;

  box-shadow: var(--shadow-lg);
}

.why-list {
  margin-top: 40px;
}

.why-item {
  display: flex;

  align-items: flex-start;

  gap: 22px;

  padding: 22px;

  border-radius: 22px;

  background: #fff;

  margin-bottom: 20px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);

  transition: 0.35s;
}

.why-item:hover {
  transform: translateX(8px);
}

.why-icon {
  width: 65px;

  height: 65px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--gradient);

  border-radius: 18px;

  flex-shrink: 0;
}

.why-icon i {
  font-size: 20px;

  color: #fff;
}

.why-item h5 {
  font-size: 21px;

  margin-bottom: 8px;
}

.why-item p {
  margin: 0;
}

/*====================================================

MANUFACTURING

======================================================*/

.manufacturing {
  background: #fff;
}

.manufacturing-gallery img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 24px;

  box-shadow: var(--shadow);

  transition: 0.5s;
}

.manufacturing-gallery img:hover {
  transform: scale(1.03);
}

.manufacturing-counter {
  display: flex;

  gap: 25px;

  margin-top: 45px;
}

.counter-box {
  flex: 1;

  background: var(--gradient);

  padding: 35px;

  border-radius: 24px;

  color: #fff;

  text-align: center;

  box-shadow: var(--shadow);
}

.counter-box h2 {
  font-size: 40px;

  margin-bottom: 8px;

  color: #fff;
}

.counter-box span {
  font-size: 15px;

  font-weight: 600;

  letter-spacing: 0.5px;
}

/*====================================================

QUALITY

======================================================*/

.quality-section {
  background: var(--light);
}

.quality-card {
  background: #fff;

  padding: 45px 25px;

  border-radius: 24px;

  text-align: center;

  transition: 0.35s;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);

  height: 100%;
}

.quality-card:hover {
  transform: translateY(-10px);

  background: var(--gradient);
}

.quality-card:hover i,
.quality-card:hover h4 {
  color: #fff;
}

.quality-card i {
  font-size: 58px;

  color: var(--primary);

  margin-bottom: 22px;

  transition: 0.35s;
}

.quality-card h4 {
  font-size: 22px;

  margin: 0;

  transition: 0.35s;
}

/*====================================================

GLOBAL

======================================================*/

.global-section {
  background: #fff;
}

.map-image img {
  width: 100%;

  border-radius: 30px;

  box-shadow: var(--shadow-lg);
}

.country-list {
  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 35px;
}

.country-list span {
  padding: 14px 22px;

  background: #f4f8fc;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.35s;

  border: 1px solid var(--border);
}

.country-list span:hover {
  background: var(--primary);

  color: #fff;

  transform: translateY(-5px);
}

/*====================================================

DOWNLOAD SECTION

======================================================*/

.download-section {
  background: #f8fbfd;
}

.download-card {
  background: #fff;

  padding: 20px 20px;

  border-radius: 28px;

  text-align: center;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);

  transition: 0.35s;

  height: 100%;
}

.download-card:hover {
  transform: translateY(-12px);
}

.download-card i {
  font-size: 17px;

  color: #e53935;

  /* margin-bottom: 25px; */
}

.download-card h4 {
  font-size: 20px;

  margin-bottom: 20px;
}

.download-card a {
  display: inline-flex;

  padding: 10px 30px;

  border-radius: 50px;

  background: var(--gradient);

  color: #fff;

  font-weight: 700;
}

.download-card a:hover {
  opacity: 0.9;

  color: #fff;
}

/*====================================================

CTA

======================================================*/

.cta-section {
  background: #fff;

  
}

.cta-box {
  background: var(--gradient);

  border-radius: 36px;

  padding: 70px;

  color: #fff;

  overflow: hidden;

  position: relative;

  box-shadow: var(--shadow-lg);
}

.cta-box::before {
  content: "";

  position: absolute;

  width: 320px;

  height: 320px;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  top: -120px;

  right: -120px;
}

.cta-box::after {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  bottom: -80px;

  left: -80px;
}

.cta-box > * {
  position: relative;

  z-index: 2;
}

.cta-box h2 {
  font-size: 28px;

  color: #fff;

  margin-bottom: 15px;
}

.cta-box p {
  font-size: 16px;

  margin: 0;

  color: #eaf4ff;
}

.cta-box .btn-primary-custom {
  background: #fff;

  color: var(--primary);

  box-shadow: none;
}

.cta-box .btn-primary-custom:hover {
  background: #f4f8fc;
}

/*====================================================

FOOTER

======================================================*/

.footer {
  background: #081c34;

  padding: 110px 0 35px;

  position: relative;

  overflow: hidden;

  color: #fff;
}

.footer::before {
  content: "";

  position: absolute;

  right: -180px;

  top: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);
}

.footer::after {
  content: "";

  position: absolute;

  left: -150px;

  bottom: -150px;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.03);
}

.footer .container {
  position: relative;

  z-index: 2;
}

.footer-logo {
  height: 65px;

  margin-bottom: 30px;
}

.footer p {
  color: #bfd2e4;

  line-height: 1.9;

  margin-bottom: 25px;
}

.footer h4 {
  font-size: 18px;

  color: #fff;

  margin-bottom: 28px;
}

.footer ul {
  padding: 0;

  margin: 0;

  list-style: none;
}

.footer ul li {
  margin-bottom: 16px;
}

.footer ul li a {
  color: #c7d7e8;

  transition: 0.35s;
}

.footer ul li a:hover {
  color: #fff;

  padding-left: 8px;
}

.footer ul li i {
  margin-right: 10px;

  color: #57b4ff;
}

.footer-social {
  display: flex;

  gap: 14px;

  margin-top: 20px;
}

.footer-social a {
  width: 46px;

  height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  color: #fff;

  transition: 0.35s;
}

.footer-social a:hover {
  background: var(--gradient);

  transform: translateY(-5px);
}

/*====================================================

COPYRIGHT

======================================================*/

.footer hr {
  border-color: rgba(255, 255, 255, 0.08);

  margin: 60px 0 25px;
}

.copyright {
  color: #afc3d7;

  font-size: 15px;
}

.copyright a {
  color: #57b4ff;
}

/*====================================================

BACK TO TOP

======================================================*/

.back-top {
  position: fixed;

  right: 30px;

  bottom: 30px;

  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--gradient);

  border-radius: 50%;

  font-size: 22px;

  color: #fff;

  cursor: pointer;

  box-shadow: var(--shadow-lg);

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: 0.4s;

  z-index: 999;
}

.back-top.show {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-6px);

  color: #fff;
}

/*====================================================

WHATSAPP

======================================================*/

.whatsapp-btn {
  position: fixed;

  left: 30px;

  bottom: 30px;

  width: 62px;

  height: 62px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #25d366;

  color: #fff;

  font-size: 22px;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);

  z-index: 999;

  transition: 0.35s;
}

.whatsapp-btn:hover {
  transform: scale(1.08);

  color: #fff;
}

/*====================================================

CUSTOM SCROLLBAR

======================================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #edf3f8;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);

  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background: #004785;
}

/*====================================================

COMMON UTILITIES

======================================================*/

.radius-20 {
  border-radius: 20px;
}

.radius-30 {
  border-radius: 30px;
}

.shadow-primary {
  box-shadow: var(--shadow);
}

.shadow-large {
  box-shadow: var(--shadow-lg);
}

.bg-light {
  background: #f8fbfd;
}

.text-primary {
  color: var(--primary) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.overflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
}

.w-fit {
  width: fit-content;
}

.section-space {
  padding: 120px 0;
}

/*====================================================

IMAGE HOVER

======================================================*/

.image-hover {
  overflow: hidden;

  border-radius: 28px;
}

.image-hover img {
  transition: 0.6s;
}

.image-hover:hover img {
  transform: scale(1.08);
}

/*====================================================

GRADIENT TEXT

======================================================*/

.gradient-text {
  background: var(--gradient);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/*====================================================

GLASS CARD

======================================================*/

.glass {
  background: rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.18);
}

/*====================================================

FLOAT ANIMATION

======================================================*/

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

/*====================================================

ROTATE

======================================================*/

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 18s linear infinite;
}

/*====================================================

FADE UP

======================================================*/

@keyframes fadeUp {
  0% {
    opacity: 0;

    transform: translateY(40px);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

/*====================================================

PULSE

======================================================*/

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 3s infinite;
}

/*====================================================

SELECTION

======================================================*/

::selection {
  background: var(--primary);

  color: #fff;
}

/*====================================================

FORM ELEMENTS

======================================================*/

input,
textarea,
select {
  width: 100%;

  padding: 16px 20px;

  border: 1px solid var(--border);

  border-radius: 16px;

  font-size: 15px;

  transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;

  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(0, 91, 170, 0.12);
}

/*====================================================

PLACEHOLDER

======================================================*/

::placeholder {
  color: #98a8b8;
}

/*====================================================

BOOTSTRAP OVERRIDES

======================================================*/

.btn:focus,
.form-control:focus {
  box-shadow: none;
}

.navbar-toggler {
  border: none;

  box-shadow: none !important;
}

.navbar-toggler i {
  font-size: 34px;

  color: #fff;
}

.amros-navbar.scrolled .navbar-toggler i {
  color: var(--dark);
}

/*=========================================
PAGE BANNER & BREADCRUMBS
=========================================*/

.page-banner {
  position: relative;

  height: 520px;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 0;
}

.page-banner-bg {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: 1;
}

.page-banner-bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.page-overlay {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(8, 28, 52, 0.92),
    rgba(8, 28, 52, 0.6)
  );

  z-index: 2;
}

.page-content {
  position: relative;

  z-index: 5;

  padding-top: 90px;

  color: #fff;
}

.page-content span {
  display: inline-block;

  padding: 8px 24px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(20px);

  border-radius: 50px;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 12px;
}

.page-content h1 {
  font-size: 44px;

  font-weight: 800;

  color: #fff;

  margin-bottom: 25px;

  line-height: 1.15;
}

.breadcrumb-list {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 0;

  margin: 0;

  list-style: none;
}

.breadcrumb-list li {
  color: #fff;

  font-size: 15px;

  font-weight: 500;
}

.breadcrumb-list a {
  color: #57b4ff;

  font-weight: 600;

  transition: 0.35s;
}

.breadcrumb-list a:hover {
  color: #fff;
}

.page-banner img {
  transition: 0.5s;
}

.page-banner:hover img {
  transform: scale(1.05);
}

/*====================================================

END OF STYLE.CSS V2

======================================================*/
