
@font-face {
  font-family: "Volvo Novum";
  src: url("../fonts/VolvoNovum3-Regular.woff2") format("woff2"),
    url("../fonts/VolvoNovum3-Regular.woff") format("woff");
  font-weight: 400;

}
@font-face {
  font-family: "Volvo-Novum-light";
  src: url("../fonts/VolvoNovum3-Light.woff2") format("woff2"),
    url("../fonts/VolvoNovum3-Light.woff") format("woff");
  font-weight: 300;

}
/* @font-face {
  font-family: "Volvo-Novum-bold";
  ;
  src: url("../fonts/VolvoNovum3-Bold.woff2") format("woff2"),
    url("../fonts/VolvoNovum3-Bold.woff") format("woff");
  font-weight: 700;

} */

@font-face {
  font-family: "Volvo Broad Spread";
  ;
  src: url("../fonts/VolvoBroadSpread.woff2") format("woff2"),
    url("../fonts/VolvoBroadSpread.woff") format("woff");
  font-weight: 600;

}


/* ================================
   1. RESET
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top:97px;
}

body {
  font-family: "Volvo Novum", "Noto Sans", sans-serif;
  color: var(--text-color);

}


/* ================================
   2. VARIABLES
================================ */

:root {
  --primary: #007bff;
  --secondary: #6c757d;
  --dark: #212121;
  --heading-color: #141414;
  --light: #f7f7f7;
  --white: #ffffff;
  --text-color: #212121;  
  --body-bg: #fff;

  --container-padding: 16px;
  --spacing-1: 8px;
  --spacing-2: 16px;
  --spacing-3: 24px;
  --spacing-4: 32px;
  --spacing-5: 40px;
  --radius: 8px;
  --shadow: 0 4px 10px rgba(0,0,0,0.08);
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus-visible {
  outline: none !important;
}

img {
  max-width: 100%;
  display: block;
  border: none;
}




/* ================================
   3. GLOBAL UTILITY (Container)
================================ */

.container {
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin-left: auto;
  margin-right: auto;
}



/* ================================
   4. GRID SYSTEM (Rows + Cols)
================================ */

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

[class^="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

/* Mobile: full width */
.col-1, .col-2, .col-3, .col-4 {
  width: 100%;
}



/* ================================
   5. UTILITY CLASSES
================================ */


.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-5 { margin-top: var(--spacing-5); }
.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-5 { margin-bottom: var(--spacing-5); }
.pt-1 { padding-top: var(--spacing-1); }
.pt-2 { padding-top: var(--spacing-2); }
.pt-3 { padding-top: var(--spacing-3); }

.pb-1 { padding-bottom: var(--spacing-1); }
.pb-2 { padding-bottom: var(--spacing-2); }
.pb-3 { padding-bottom: var(--spacing-3); }

.p-1 { padding: var(--spacing-1); }
.p-2 { padding: var(--spacing-2); }
.p-3 { padding: var(--spacing-3); }

.py-5{
  padding-top: var(--spacing-5);
  padding-bottom: var(--spacing-5);
}

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }


.d-block { display: block; }
.d-none { display: none; }


.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.fw-bold { font-weight: 700; }
.fw-medium { font-weight: 500; }


.w-100 { width: 100%; }
.h-100{height: 100%;}
.bgDark{
  background: var(--dark);
}

.bgLight{
  background: var(--light);
}
.bgImg{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
/* ================================
   6. COMPONENTS (Reusable UI)
================================ */

/* Buttons */

.siteBtn {
  padding: 10px 12px;
  background: var(--white);
  border-radius: 4px;
  display: inline-block;
  color: var(--text-color);
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.siteBtn span {
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-inline: 8px;
 
}
.siteBtn:hover{
 background-color: #e1e1e1
}
.siteBtn img{
  max-width: 21px;
}
.siteBtnOutlined{
  border-color:var(--dark);
  background: transparent;
  color:var(--dark);
}
.siteBtnOutlined.white{
  border-color: var(--white);
  color: var(--white);
}
.siteBtnOutlined.white img{
  filter: invert(1);
}
.siteBtnOutlined.white:hover{
  background: var(--white);
  color: var(--dark);
}
.siteBtnOutlined.white:hover img{
  filter: none;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-light {
  background: var(--light);
  color: var(--dark);
}

/* Card */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

/* Section spacing */
.section {
  padding: 60px 0;
}

.section-sm {
  padding: 40px 0;
}

.section-lg {
  padding: 90px 0;
}
.sectionHeader {
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90%;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
 
}



.section-subTitle{
      line-height: 32px;
      font-size: 24px;
      font-weight: 400;
}

/* Animation Classes */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-120px);
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.slide-in-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.slide-in-right{
  opacity: 0;
  transform: translateX(120px) skewX(20deg);
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-in-right.animate-in {
  opacity: 1;
   transform: translateX(0) skewX(0deg);
}

/* Optional stagger delays */
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}



/* ================================
   6. Custom CSS
================================ */

.navbar {
  padding: 0;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  position: fixed;
  width: 100%;
  z-index: 9999999;
  background: var(--body-bg);
  top:0;

}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
 
}

.brand {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: flex-start;
}
.logo{
  max-width: 100px;
  max-height: 30px;
}
.brand .text {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  margin-block-start: 12px;
  margin-inline-start: 24px;
}

.brand .text .business {
  color: var(--text-color);

}

.brand .text .country {
  font-size: 14px;
  color: #575757;
}
  .menuToggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar ul {
    display: flex;

    margin-bottom: 0;
    align-items: center;
  
}

.navbar ul li a {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: var(--text-color);
    display: inline-block;
    position: relative;
    padding: 40px 20px;
}

.navbar ul li a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
   box-shadow: inset 0 4px #2a609d;
    opacity: 0;
    visibility: hidden;
}
.navbar ul li a.active:after {
    visibility: visible;
    opacity: 1;
}
.heroSlider {
  width: 100%;
  height: calc(100vh - 97px);
  position: relative;
  overflow: hidden;
  margin-top:97px;

}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSlider .swiper-slide {
  position: relative;
 

}

/* .heroSlider .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));

} */

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

.heroCaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  z-index: 2;
  padding-bottom: 80px;

}



.hero-content {
   color: #fff;
  max-width: 75%;
}

.hero-content h1{
  color:var(--white);
  font-size: 70px;
  line-height:60px;
  font-family: "Volvo Broad Spread";
  margin-bottom: 20px;
  letter-spacing: 3px;

}

.hero-content p{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 0;
  color:var(--white);
  max-width: 80%;
} 

.heroSlider .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid var(--white);
  width: 14px;
  height: 14px;
  margin: 0 6px;
  position: relative;
}

.heroSlider .swiper-pagination-bullet::before{
   content: "";
  position: absolute;
  inset: 2px;
  background: transparent;
  border-radius: 50%;
  transition: 0.3s ease;
}

.heroSlider .swiper-pagination-bullet-active::before {
  background: #fff;
}




/* .product-section{
  margin-top: 60px;
} */

.myPills .nav-link{
  font-size: 16px;
  color: var(--text-color);
  padding: 10px 12px;
  border-radius: 0;
  border-bottom: 2px solid transparent;

  

}

.myPills .nav-link.active{
  border-color: var(--dark);
  background: transparent;

  color:var(--text-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.productBox {
  padding: 30px;
  background: var(--white);
  overflow: hidden;
 
}
.productBox:hover{
  box-shadow: 0px 1px 4px rgba(0, 0, 0, .12), 0px 16px 32px rgba(0, 0, 0, .18);
  text-decoration: none;
}

.productImg{
  max-height: 160px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.productImg img{
  width: 100%;
  height: 100%;
  object-fit: contain; 
}


.productContent{
  display: flex;
  flex-direction: column;

}
.productTitle{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-size: 20px;
  font-weight: 600;
  color:var(--heading-color);
  gap: 10px;
  margin-bottom: 8px;
}

.productSubTitle{
  font-size: 16px;
  color:#53565A;
  font-weight: 600;
}
.productFeatures{
  margin-top: 20px;
  min-height: 200px;
}

.productFeatures h5{
  font-weight: 600;
  font-size: 16px;
  color:#53565A
}
.productFeatures ul li{
  font-size: 15px;
  color:#53565A;
  line-height: 140%;
  list-style-type: disc;

}




.productLinks {
     
  display: flex;
  gap:5px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  color:#2A609D;
}
.productLinks span {
 font-size: 16px;
}
.productLinks img {
  width: 24px;
  height: 24px;
}

.parallaxSec {
    position: relative;
    min-height: 55vh;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rellax {
    position: absolute;
    inset:0;
    z-index: 0;
}
.rellax img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  pointer-events: none;   /* ADD THIS */
}
.parallaxContent {
    position: relative;
    z-index: 2;
   
    width: 100%;
    height: 100%;
    color: white;
   
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  
}

.parallaxContent h2{
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}
.parallaxContent p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  font-family: "Volvo-Novum-light";
}
.serviceBlock{
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px; /* space between the 2 columns */
  margin-top: 40px;
}
.service-img{
  height: 300px;
  width: 100%;
  display: block;
  
}
.service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-content h2{
  color:var(--text-color);
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
}
.service-content p{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color:#575757;
}

.twoColRow{
   display: grid;
  grid-template-columns: 1fr 1fr;
 align-items: center;
  gap: 40px;
}
  
.contentBox h3{
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 600;
}
.contentBox p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}


.awardRow{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 32px;
  align-items: center;
}
.awardBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.awardBox img{
   width: 80px; 
  height: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px; /* base row height */
  gap: 16px;
}


.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eee;

}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.testimonialBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  background-color: #f7f7f7;
  padding: 30px;
   min-height: 200px;
}

.clientInfo{
  margin-top: auto;

}
.clientInfo p{
  color:#8D8D8D;
  font-size: 16px;
  margin-bottom: 0;
}

.videoWrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
 
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.videoText{
font-size: 20px;
margin-top: 30px;
}container

.ctaBlock {
  padding: 100px 130px;
}

.ctaBlock h2 {
  font-size: 42px;
  color: var(--white);

}

.inputBox label {
font-weight: 600;
color:#333;
margin-bottom: 1px!important;
}
.inputBox label span{
  color:#bf2012
}
.siteInput {
  width: 100%;
  padding: 10px 15px;
  height: 42px;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  appearance: none;
  font-size: 14px;
  color:#8E8E93
}
textarea.siteInput {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  appearance: none;
  height: auto;
  min-height: 120px;
}
.siteInput:focus, textarea.siteInput:focus{
  border-color: var(--dark);
  box-shadow: none
}
.registerBtn{
  background: #2a609d;
  color: var(--white);
  width: 100%;
}

.footer{
  padding-block: 12px;
  border-top: 1px solid #e1e1e1;
 width: 100%;
 margin-top: 60px;
}
.footer .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo{
   padding-inline: 22px;
}
.footer-logo img {
  height: 10px; 
  width: auto;
}
.copyright{
  font-size: 16px;
  color: var(--heading-color);

}
.website{
    position: relative;
}
.website:after {
  background-color: #E1DFDD;
  content: " ";
  display: inline-block;
  height: 16px;
  position: absolute;
  right: calc(-1 * 16px);
  top: 3px;
  width: 1px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-right a {
 
  text-decoration: none;
  font-size: 16px;
  margin : 8px 0;
  color: var(--heading-color);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  display: block;
}



/* ================================
   7. RESPONSIVE UTILITIES
================================ */
@media (max-width: 768px) {
  html{
    scroll-padding-top:77px
  }

  
  .text-md-center {
    text-align: center;
  }

  .d-md-none {
    display: none;
  }

  .col-2 {
    width: 50%;
  }

  .col-3 {
    width: 33.333%;
  }

  .col-4 {
    width: 25%;
  }

  header .container {

    gap: 5px;
  }
  .logo {
    max-width: 85px;
    max-height: 30px;
}
.brand .text{
     margin-inline-start: 14px;
}
.brand .text .business {
  font-size: 12px;
}
  .menuToggle {
    display: flex;
  }

  .menuToggle span {
    display: block;
    height: 2px;
    background: #000;
    border-radius: 3px;
    transition: 0.3s ease;
  }

  .menuToggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menuToggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menuToggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
.navbar{
  padding: 10px 0;
}
  .navbar .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    flex-direction: column;
    background: #fff;
    gap: 10px;
    height: 100vh;
    padding: 20px 30px;
    align-items: flex-start;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
    z-index: 9999;
  }
  .navbar ul li, .navbar ul li a {
    width: 100%;
  }
  .navbar ul li a{

    padding: 20px 0;
  border-bottom: 1px solid #e1e1e1;
  }
  .navbar ul li a:after{
    display: none;
  }
.navbar .menu.active {
        left: 0;
    }
  .heroSlider {
    height: 300px;
    top:0;
    margin-top: 71px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 22px;
  }

  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .myPills .nav-link {
    padding: 10px 8px;
    font-size: 14px;
  }

  .myPills {
    gap: 5px !important
  }

  .serviceBlock {
    grid-template-columns: 1fr;
  }

  .parallaxContent h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .parallaxContent p {
    font-size: 16px;
    line-height: 23px;
  }

  .twoColRow {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .imgBox {
    order: 1;
  }

  .contentBox {
    order: 2;
  }

  .ctaBlock {
    padding: 60px 30px;
  }

  .ctaBlock h2 {
    font-size: 30px;
  }

  .awardRow {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.big {
    grid-column: span 1;
    grid-row: span 1;
  }

  .videoText {
    text-align: center;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subTitle {
    font-size: 16px;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
  }

  .footer-left {
    flex-direction: column;
  }
}

/* @media (min-width: 1200px){
  .container{
    max-width: 1040px;
  }
} */
/* ================================
   END
================================ */
