/*========================================
  Common Styles Across Website
========================================*/

/*----------------------------------------
  Import Fonts
----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&family=Roboto:wght@400;500&display=swap');

/*----------------------------------------
  Reset & Base Styles
----------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

html {
    color: var(--primary-text-color);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.55;
}

body {
    padding-top: var(--header-height, 5rem);
}

section {
    padding: var(--padding-inline-section, 1rem);
    overflow: hidden;
}

.section-heading {
    text-align: center;
    padding: var(--padding-inline-section, 1rem);
}

/*----------------------------------------
  CSS Variables
----------------------------------------*/
:root {
    --borderS: 1rem;
    /* Colors */
    --primary-text-color: #183b56;
    --secondary-text-color: #577592;
    --accent-color: #51afdc;
    --accent-color-dark: #1d69a3;
    --blue: #51afdc;
    --yellow: #f5bf23;
    --black: #111;
    --white: #fff;
    --light-color: #666;
    --light-bg: #eee;
    --light-bg1: #fafafa;
    --light-green: #8df39b;
    --pink: #e03c62;
    --pink-light: #f9e9ed;
    --light-greyblue: #b9cde4;
    --light-blue: #ebf2fa;

    /* Gradients */
    --background: linear-gradient(to right, #51afdc, #8df39b);
    --primary-gradient: linear-gradient(-225deg, #51afdc 0%, #8df39b 100%);
    --body-gradient: linear-gradient(135deg, #F5F7FA, #C3CFE2);

    /* Shadows & Borders */
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border: 0.2rem solid #577592;
    --border-radius-lg: 2rem;

    /* Z-Index */
    --z-tooltip: 10;
    --z-fixed: 100;

    /* Layout */
    --header-height: 3.5rem;
    --padding-inline-section: 1rem;

    /* Text */
    --text-dark: #1E1E2F;
    --text-medium: #202F33;
    --text-light: #4B5563;
    --text-accent: #6366F1;

    /* Card */
    --card-bg: rgba(255, 255, 255, 0.2);
}

/*----------------------------------------
  Typography
----------------------------------------*/
h1 {
  /*  font-size: clamp(1.8rem, 3vw, 2.6rem);*/
      font-size: clamp(2.5rem, 4vw, 4.2rem); /* 45–68px */
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.02em;
}

h1 span {
    background: linear-gradient(to right, #51afdc, #8df39b, #51afdc);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

h2 {
  
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;    
}
h2 span {
    background: linear-gradient(to right, #51afdc, #8df39b, #51afdc);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.3;
}

h4 {
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    line-height: 1.35;
    
  
}

h5 {
    font-size: clamp(1.05rem, 1.2vw, 1.2rem);
    line-height: 1.4;
   
}

h6 {
    font-size: clamp(1rem, 1vw, 1.1rem);
    line-height: 1.4;
    
}

p,ul li {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    font-weight: 400;
    color: var(--secondary-text-color);
}
ul li a{
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.4;
  color: var(--primary-text-color);
}
/*----------------------------------------
  Links
----------------------------------------*/
a {
     
    color: inherit;
    text-decoration: none;
    display: inline-block;
    text-transform: capitalize;
    padding: 1rem;
    user-select: none;
    position: relative;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 3px;
    width: 0%;
    background: var(--background);
    transition: width 0.4s linear;
}

a:hover,
a.menu-active {
    color: var(--accent-color-dark);
}

a:hover::after,
a.menu-active::after {
    width: 100%;
}

/*----------------------------------------
  Utility Classes
----------------------------------------*/
.flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/*----------------------------------------
  Buttons
----------------------------------------*/
.primary-button,
.secondary-button {
    text-decoration: none;
    padding: 0.6em 1.2em;
    border-radius: 1em;
    
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    display: inline-block;
    text-align: center;
}

.primary-button {
    background: var(--primary-gradient);
    color: var(--white) !important;
}

.primary-button:hover {
    transform: translateY(-2px);
    background: var(--white);
    color: var(--accent-color-dark) !important;
}

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.secondary-button:hover {
    background-color: var(--white);
    color: #149279;
    transform: translateY(-2px);
}

/*----------------------------------------
  Preloader
----------------------------------------*/
.preloader-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.preloader-container .preloader {
    width: 10rem;
    height: 10rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-container .preloader::before {
    content: "";
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border-top: 0.5rem solid transparent;
    border-right: 0.5rem solid var(--blue);
    border-bottom: 0.5rem solid var(--light-green);
    border-left: 0.5rem solid transparent;
    animation: rotate360 1s linear infinite;
    will-change: transform;
}

.preloader-container .preloader img {
    width: 6rem;
    height: 4rem;
    user-select: none;
}

@keyframes rotate360 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*----------------------------------------
  Header & Navigation
----------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: var(--z-fixed);
}

.nav {
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.company-logo img {
    width: clamp(8rem, 15vw, 12rem);
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
}

.nav_toggle {
    position: relative;
}

.nav_burger,
.nav_close {
    position: absolute;
    inset: 0;
    margin: auto;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
    width: max-content;
    height: max-content;
}

.nav_close { opacity: 0; }

.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}

.show-icon .nav_burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav_close {
    opacity: 1;
    transform: rotate(90deg);
}

.header .icons {
    display: flex;
    align-items: center;
}

.header .icons div {
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    cursor: pointer;
    text-align: center;
}

.header .icons div:hover {
    background: var(--black);
    color: var(--white);
}

/* Dropdown */
.nav_list,
.dropdown_menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown_item { cursor: pointer; }

.dropdown_arrow {
    color: var(--blue);
    transition: transform 0.4s;
}

.dropdown_menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--white);
    min-width: max-content;
}

.dropdown_item:hover .dropdown_menu {
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
}

.dropdown_item:hover .dropdown_arrow {
    transform: rotate(180deg);
}

/*----------------------------------------
  Contact Sidebar
----------------------------------------*/
.contact-info {
    position: fixed;
    top: 0;
    right: 0;
    width:max-content;
   max-width: 25rem;
    height: 100%;
    background: var(--white);
    text-align: center;
    z-index: 1110;
    padding: 2rem 1rem 1rem;
    display: none;
    transition: transform 0.3s ease;
    
}

.contact-info.active {
    display: block;
    box-shadow: 0 0 0 100vw rgba(0,0,0,0.7);
}

.contact-info #close-contact-info {
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--black);
    transition: transform 0.3s ease;
}

.contact-info #close-contact-info:hover {
    transform: rotate(90deg);
}
/* ==========================
   Contact Form
========================== */
.contact-form {
  background: var(--background);
  position: relative;
}

/* Decorative Circles */
.contact-form .circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.contact-form .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.contact-form .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

/* Small Decorative Shape */
.contact-form:before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-color: #51afdc;
  transform: rotate(45deg);
  top: 4rem;
  left: -1rem; /* Fixed potential typo: "-rem" to "-1rem" */
}

/* ==========================
   Form Inputs
========================== */
form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 0.5rem;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 8rem;
  border-radius: 0.5rem;
  resize: none;
  overflow-y: auto;
}

/* Floating Labels */
.input-container label {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

/* Submit Button */
.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 0.5rem;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

/* Floating Label Effects */
.input-container span {
  position: absolute;
  top: 0;
  left: 1.5rem;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 2rem;
  background-color: var(--blue);
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}
/* Social Media */
.social-media {
  padding: 2rem 0 0 0;
  display: flex;
  align-items: center;
  gap :1rem;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--background);
  color: #fff;
  text-align: center;
  line-height: 1rem;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

/*.contact-info .info, 
.contact-info .share {
    padding: 1rem 0;
}

.contact-info .share {
    border-top: var(--border);
    margin-top: 1rem;
}

.contact-info .info i,
.contact-info .share a {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
}

.contact-info .info i:hover,
.contact-info .share a:hover {
    background: var(--black);
    color: var(--white);
}
*/
/*----------------------------------------
  Footer
----------------------------------------*/
footer {
    background: radial-gradient(circle, rgba(165,254,203,1) 0%, rgba(81,175,220,1) 100%);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

 .footer-container {
    padding: var(--padding-inline-section, 2rem);
    background: linear-gradient(0deg, rgba(255,255,250,0.1), white);
    backdrop-filter: blur(10px);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
   
   
}

.company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 40%;
   }

.company-info .company-logo  {
     padding: 0;
}
.company-address
{
    padding: 1rem;
}
.footer-links {
    display: flex;
    gap: 1rem;
    flex: 1 1 40rem;
     align-items: flex-start;
    flex-wrap: wrap;
   
}

.footer-links .link-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
}

.footer-links .link-column h6 {
    padding: 0 1rem;
}

.footer-links .link-column a {
    padding: 0.5rem 1rem;
}

.footer-links .link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subfooter {
    backdrop-filter: blur(15px);
    padding: var(--padding-inline-section, 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.subfooter a {
    text-decoration: none;
    color: inherit;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.subfooter a:hover {
    color: #01579B;
}
 /*.chooseus-container{
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}*/
.chooseus-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding: 4rem;
}

.chooseus-card-wrapper{
  position: relative;
  width:100%;
  height: auto;
  perspective: 1000px;
 
}

.chooseus-card{
  width:100%;
  height: 100%;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  padding:1rem 1rem 1rem 2rem;
  position: relative;
  z-index: 2;
}
.chooseus-card h4{
  color: var(--blue);
}
.center-content{
  text-align: center;
  margin-bottom: 3rem;
}
.chooseus-card-wrapper .icon{
  position: absolute;
  top: -3rem;
  left:-3rem;
  width: 5rem;
  height: 5rem;
  background-image: var(--primary-gradient);
  border-radius: 1rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  filter:drop-shadow(0 0 6px rgba(255,255,255,0.4));
  z-index: 1;
}
/* -------------------------------------------------------------------------- */
/*                             1. HERO / HOME SWIPER                          */
/* -------------------------------------------------------------------------- */


/* Slide */
 .slide {
    box-shadow: var(--box-shadow);
    height: 70vh;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
}
/* Hero image (LCP element) */
.slide .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

 .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgb(1, 15, 54), transparent);
    z-index: 1;
}

/* Slide content */
.slide .content {
    position: relative;
    width: 40rem;
    padding: 3rem;
    text-align: left;
    color: var(--white);
    z-index: 2; /* IMPORTANT */
}

.slide .content h3 {
    text-transform: uppercase;
}

.slide .content p {
    color: var(--white);
    padding: 1rem 0;
}
/* Slide content 
.slide .slide-image {
   
    width: 100%;
    height: 100%;
  }

.slide .slide-image img{
    width: 100%;
    height: 100%;
    object-fit:contain;
  
}*/
/* Cookie Banner */
/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: #fff;
  padding: 12px 20px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
  opacity: 0;              /* hidden initially */
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 9999;
}

/* Show the banner */
#cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}

/* OK Button */
#cookie-banner button {
  background-color: #0077cc;
  color: #fff;
  border: none;
  padding: 8px 16px;
  margin-left: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-banner button:hover {
  background-color: #005fa3;
}
