/*
=================================================================
    Google Font Import
=================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*
=================================================================
    Universal
=================================================================
*/


* { 
    box-sizing: border-box; 
    margin: 0;
    padding: 0; 
    animation: moveBackground 50s infinite, shakeBackground 0.1s infinite;
}

/*
=================================================================
    Sections 
=================================================================
*/

.section-one {
  width: 100%;
  min-height: 65vh;
  background: conic-gradient(from 135deg, rgba(167, 168, 239, 1.0), rgba(197, 249, 249, 1.0));
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
  overflow-y: hidden;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5); /* Replaced px with rem */
}

.horizontal-card-one {
  background: linear-gradient(0deg, #c5cace 0%, #d2dddf 100%);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 40vh;
  width: 100%;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5); /* Replaced px with rem */
  text-align: center;
}

.section-two {
  width: 100%;
  min-height: 65vh;
  overflow-y: hidden;
  overflow-x: none;
  background: conic-gradient(from 225deg, #676DA8, #A8B9C2);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5); /* Replaced px with rem */
}

.horizontal-card-two {
  background: linear-gradient(0deg, #c5cace 0%, #d2dddf 100%);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 40vh;
  width: 100%;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5); /* Replaced px with rem */
  text-align: center;
}

.section-three {
  width: 100%;
  min-height: 65vh;
  background: conic-gradient(from 135deg, rgba(167, 168, 239, 1.0), rgba(197, 249, 249, 1.0));
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
  overflow-y: hidden;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5); /* Replaced px with rem */
}

.horizontal-card-three {
  background: linear-gradient(0deg, #c5cace 0%, #d2dddf 100%);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 40vh;
  width: 100%;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5); /* Replaced px with rem */
  text-align: center;
}

.section-four {
  width: 100%;
  min-height: 65vh;
  background: conic-gradient(from 225deg, #676DA8, #A8B9C2);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow-y: hidden;
  overflow-x: hidden;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5); /* Replaced px with rem */
}

.footer-section {
  font-family: "Montserrat", serif;
  align-items: center;
}


/*
=================================================================
    Top Navigation
=================================================================
*/

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);
  --custom-color: #4F6367;
  --custom-color2: #red;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1.2rem;
  }
}

/*=============== BASE ===============*/

body {
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container-nav1 {
  max-width: 3000;
  margin-inline: 2rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--custom-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}


.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--custom-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--custom-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

/*
=================================================================
    Banner Image Section
=================================================================
*/

.banner-section 
   { 
    height: 100%; 
    box-shadow: 0 10px 20px rgba(177, 169, 169, 0.3); 
    overflow-x: hidden;
   }

.banner-section 
   {
    margin-top: 0px; 
    height: 900px;
    color: white;
    text-align: center;
    padding: 40px 0;
    position: relative;
    background-image: url(../background/bannerimage.png);
    background-size: cover;
    background-position: center center;
    object-fit: cover;
   }

.banner-area:after 
   { 
    content: ''; 
    position: absolute; 
    top: 0;
    left: 0; 
    display: block; 
    width: 100%;
    height: 100%;
    background: #020f14; 
    opacity: .15; 
   }

.banner-area h2 
   { 
    padding-top: 20%; 
    font-size: 80px;
    color: #fff;
    font-family: "Montserrat", serif;
   }

/*
=================================================================
    Content Section One
=================================================================
*/
.content-section-one 
    {
    background: rgba(255, 255, 255, 0.4); 
    padding: 1.5rem; 
    border-radius: 0.625rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(10px); 
   -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    overflow-x: hidden;
    overflow-y: hidden;
    transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
    transform-origin: center;
    width: auto;
    max-width: 50rem;
    height: auto;
    }

.content-section-one:hover{ 
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
}

.container-one { 
    
    
    width: 90%;
    display: grid;
    margin-left: auto; 
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px; 
    margin: 30px auto;
    align-items: center;
    padding-top: 40px;
    
    

}

.image-section-one img { 
    
    
    max-width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3); /* Deeper and softer shadow */

    
}

.content-section-one .title-one { 

    font-style: normal;
    font-optical-sizing: auto;
    font-size: 1.25rem;
    font-family: sans-serif;
    color: #262a2b;
    text-align: center;
    
}

.content-section-one .content-one h3 {

    margin-top: 1.25rem; 
    color:#6498c1;
    font-family: sans-serif;
    font-size: 1.438rem;
    font-optical-sizing: auto;
    text-align: center;
    

}

.content-section-one .content-one p { 
    margin-top: 0.938rem; 
    font-family: serif;
    font-weight: 500; 
    font-size: 1.188rem;   
    line-height: 1.4;             /* Increased to improve readability */
    color:#3d4446;
    padding-left: 10%;
    max-width: 40.625rem;             /* Keep text width manageable */
    font-optical-sizing: auto;
    text-align: justify;          /* Keep justified text */
    text-align-last: left;        /* Prevents last line from stretching */
    word-spacing: 0.01em;         /* Minimize word-spacing to reduce large gaps */
    hyphens: manual;             /* Prevents excessive hyphenation by default */
    overflow-wrap: normal;       /* Avoids breaking words unnecessarily */
}


.content-section-one .content-one .button2{ 
    margin-top: 1.875rem;     
}

.content-section-one .content-one .button2 a { 

    background-color: #3d3d3d;
    padding: 12px 40px; 
    text-decoration: none; 
    color: #fff; 
    font-size: 27px; 
    letter-spacing: 1.5;
    border-radius: 10px;
    box-shadow: 1rem 1.6rem 1.6rem -0.90rem hsla(0, 0%, 0%, 0.25);

}

.content-section-one .content-one .button2 a:hover { 

    background-color: #FF4742; 
    color:#fff;
}

.container-one .social i{ 

    color:#256680; 
    font-size: 20px; 
    padding: 0px 2px;
   
}

.container-one .social i:hover { 
    color: #FF4742; 
}


@media screen and (max-width: 900px) { 
    .container-one {
    grid-template-columns: repeat(1, 1fr);

    }
    
    .image-section-one img{ 
        width: 100%;
    }

    
    
}

/*
=================================================================
    Accordion Section One
=================================================================
*/

.accordion1 {
  display: flex;
  flex-direction:column; /* Stack accordion items vertically */
  width: auto;
  padding-right: 30px;
  padding-top: 20px;
  max-width: auto;
}


.accordion1 li { 
    
    
  display: block;
  list-style: none; 
  width: 100%; 
  margin: 20px; 
  padding: 10px; 
  border-radius: 8px; 
  background: #c8cdd1; 
  box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15), 
                -6px -6px 10px -1px rgba(206, 199, 199, 0.7), 
                -6px -6px 10px -1px rgba(255,255,255,0.7);
}

.accordion1 li label { 
    
  display: flex; 
  font-family: "Montserrat", serif;
  align-items: center;
  padding: 10px; /* master setting for moving the boxes in the y-axis */
  font-size: 22px; 
  font-weight: 500;   
  cursor: pointer; 
    

}

label::before { 

  content: '+'; /*adds a plus icon near the accordion title*/ 
  margin-right: 10px; /*margin for moving accordion title */ 
  font-size: 24px; 
  font-weight: 600;
    
}

input[type="checkbox"] { 
    display: none; 
}

.accordion1 .material { 

    
  color: #555; 
  padding: 0 10px; 
  line-height: 26px; 
  max-height: 0; /* size y-axis */
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

.accordion1 .material p { 
  overflow-x: auto;
  padding: 10px;
  hyphens:auto;
  text-align: justify;
  font-size: 18px;
  color:#3d4446;
}


.accordion1 input[type="checkbox"]:checked + label + .material { 
    
  max-height: 400px;
  padding: 10px 10px 20px;
}

.accordion1 input[type="checkbox"]:checked + label::before { 

    content: '-';
}

/*
=================================================================
    Horizontal Card Section Universal
=================================================================
*/


.card-container
{ 
  display: flex;
  justify-content: center; 
  flex-wrap: wrap;
  margin-top: 100px;
  max-width: 1500px; /* Adjust this based on your layout */
  margin: 0 auto; /* Center the container */
}

.card
{
  width: 325px;
  background-color: #f0f0f0; 
  border-radius: 8px;
  overflow: hidden; 
  box-shadow: 0px 2px 4px rgba(0,0,0,0.2); 
  margin: 20px;
  padding: 10px;
  height: 550px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4); /* Lighter background for glass effect */
  backdrop-filter: blur(10px); /* Apply the glass blur effect */
  -webkit-backdrop-filter: blur(10px); /* Add support for WebKit browsers */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

 .card:hover
{ 
  transform: scale(1.1px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.6);
}
 

 .card img  
{ 
  border-radius: 20px;
  width: 100%; 
  height: 12.5rem;
  width: 19rem;
}

 .card-content 
{
  padding: 16px;
}
 
.card-content h3 
{ 
  font-size: 20px; 
  margin-bottom: 12px;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-break: normal;  
}

 .card-content p
 { 
    color:#3d4446;
    font-size: 19px;
    line-height: 1.3; 
    font-family: serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: justify;
    word-wrap: break-word;
    hyphens: auto;
 }


/*
=================================================================
    Section 2 Services
=================================================================
*/

.content-section-two {
    background: rgba(255, 255, 255, 0.4); /* Lighter background for glass effect */
    padding: 24px; /* Add padding for spacing */
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add shadow for emphasis */
    backdrop-filter: blur(10px); /* Apply the glass blur effect */
   -webkit-backdrop-filter: blur(10px); /* Add support for WebKit browsers */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Optional: Add a subtle border */
    overflow-x: hidden;
    overflow-y: hidden;
    transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
    transform-origin: center;
    width: auto;
    max-width: 800px;
}

.content-section-two:hover{ 
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
}

.container-two { 
    
    
    width: 90%;
    display: grid;
    margin-left: auto; 
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px; 
    margin: 30px auto;
    align-items: center;
    padding-top: 40px;
}



.image-section-two img { 
    width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3); /* Deeper and softer shadow */
}


.content-section-two .title-two { 
    font-style: normal;
    font-optical-sizing: auto;
    font-size: 20px;
    font-family: sans-serif;
    padding-left: 30px;
    color: #262a2b;
    text-align: center;
}

.content-section-two .content-two h3 {
    margin-top: 20px; 
    color:#6498c1;
    font-family: sans-serif;
    font-size: 23px;
    padding-left: 30px;
    font-optical-sizing: auto;
    text-align: center;
}

.content-section-two .content-two p { 
    margin-top: 15px; 
    font-family: serif;
    font-weight: 500; 
    font-size: 19px;   
    line-height: 1.4;             
    color:#3d4446;
    padding-left: 10%;
    max-width: 650px;            
    font-optical-sizing: auto;
    text-align: justify;          
    text-align-last: left;        
    word-spacing: 0.01em;        
    hyphens: manual;             
    overflow-wrap: normal;  
}



.content-section-two .content-two .button3{ 
    margin-top: 30px;     
}

.content-section-two .content-two .button3 a { 
    background-color: #3d3d3d;
    padding: 12px 40px; 
    text-decoration: none; 
    color: #fff; 
    font-size: 27px; 
    letter-spacing: 1.5;
    border-radius: 10px;
    box-shadow: 1rem 1.6rem 1.6rem -0.90rem hsla(0, 0%, 0%, 0.25);
}

.content-section-two .content-two .button3 a:hover { 
    background-color: #FF4742; 
    color:#fff;
}

.container-two .social i{ 
    color:#256680; 
    font-size: 20px; 
    padding: 0px 2px;
    padding-top: 80px;
}

.container-two .social i:hover { 
    color: #FF4742; 
}

@media screen and (max-width: 900px) { 
    .container-two {
    grid-template-columns: repeat(1, 1fr);

    }
    
    .image-section-two img{ 
        width: 100%;
    }
    
}

/*
=================================================================
    Accordion Section 2
=================================================================
*/

.accordion2 {
    display: flex;
    flex-direction:column; /* Stack accordion items vertically */
    width: auto;
    padding-right: 30px;
    padding-top: 20px;
    max-width: auto; 
    
}

.accordion2 li { 
    
    
    display: block;
    list-style: none; 
    width: 100%; 
    margin: 20px; 
    padding: 10px; 
    border-radius: 8px; 
    background: #e3edf7; 
    background: #c8cdd1; 
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15), 
                -6px -6px 10px -1px rgba(206, 199, 199, 0.7), 
                -6px -6px 10px -1px rgba(255,255,255,0.7);
}

.accordion2 li label { 

    display: flex; 
    font-family: "Montserrat", serif;
    align-items: center;
    padding: 10px; /* master setting for moving the boxes in the y-axis */
    font-size: 22px; 
    font-weight: 500;   
    cursor: pointer; 

}

label::before { 

    content: '+'; /*adds a plus icon near the accordion title*/ 
    margin-right: 10px; /*margin for moving accordion title */ 
    font-size: 24px; 
    font-weight: 600;
}

input[type="checkbox"] { 
    display: none; 
}

.accordion2 .material {   
  color: #555; 
  padding: 0 10px; 
  line-height: 26px; 
  max-height: 0; /* size y-axis */
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

.accordion2 .material p { 
  overflow-x: auto;
  padding: 10px;
  hyphens:auto;
  text-align: justify;
  font-size: 18px;
  color:#3d4446;
}


.accordion2 input[type="checkbox"]:checked + label + .material { 

    max-height: 400px;
    padding: 10px 10px 20px;
}

.accordion2 input[type="checkbox"]:checked + label::before { 

    content: '-';
}

/*
=================================================================
    Section 3 Services 
=================================================================
*/

.content-section-three {
    background: rgba(255, 255, 255, 0.4); /* Lighter background for glass effect */
    padding: 24px; /* Add padding for spacing */
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add shadow for emphasis */
    backdrop-filter: blur(10px); /* Apply the glass blur effect */
   -webkit-backdrop-filter: blur(10px); /* Add support for WebKit browsers */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Optional: Add a subtle border */
    overflow-x: hidden;
    overflow-y: hidden;
    transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
    transform-origin: center;
    width: auto;
    max-width: 800px;
}

.content-section-three:hover{ 
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
    font-optical-sizing: auto;
}

.container-three { 
    width: 90%;
    display: grid;
    margin-left: auto; 
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px; 
    margin: 30px auto;
    align-items: center;
    padding-top: 40px;
    margin-top: 20px; 
}


.image-section-three img { 
    
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3); /* Deeper and softer shadow */
}


.content-section-three .title-three { 

    font-style: normal;
    font-optical-sizing: auto;
    font-size: 20px;
    font-family: sans-serif;
    padding-left: 30px;
    color: #262a2b;
    text-align: center;
    
}

.content-section-three .content-three h3 {

    margin-top: 20px; 
    color:#6498c1;
    font-family: sans-serif;
    font-size: 23px;
    font-optical-sizing: auto;
    text-align: center;
}

.content-section-three .content-three p {
    margin-top: 15px; 
    font-family: serif;
    font-weight: 500; 
    font-size: 19px;   
    line-height: 1.4;             
    color:#3d4446;
    padding-left: 10%;
    max-width: 650px;             
    font-optical-sizing: auto;
    text-align: justify;          
    text-align-last: left;        
    word-spacing: 0.01em;         
    hyphens: manual;             
    overflow-wrap: normal;       
}

.content-section-three .content-three .button3{ 
    margin-top: 30px;     
}

.content-section-three .content-three .button3 a { 

    background-color: #3d3d3d;
    padding: 12px 40px; 
    text-decoration: none; 
    color: #fff; 
    font-size: 27px; 
    letter-spacing: 1.5;
    border-radius: 10px;
    box-shadow: 1rem 1.6rem 1.6rem -0.90rem hsla(0, 0%, 0%, 0.25);

}

.content-section-three .content-three .button3 a:hover { 

    background-color: #FF4742; 
    color:#fff;
}

.container-three .social i{ 

    color:#256680; 
    font-size: 20px; 
    padding: 0px 2px;
   
}

.container-three .social i:hover { 
    color: #FF4742; 
}

@media screen and (max-width: 900px) { 
    .container-three {
    grid-template-columns: repeat(1, 1fr);
    }
    .image-section-three img{ 
        width: 100%;
    }   
}

/*
=================================================================
    Accordion Section 3
=================================================================
*/

.accordion3 {
    display: flex;
    flex-direction:column; 
    width: auto;
    padding-right: 30px;
    padding-top: 20px;
    max-width: auto;
}

.accordion3 .material p { 
  overflow-x: auto;
  padding: 10px;
  hyphens:auto;
  text-align: justify;
  font-size: 18px;
  color:#3d4446;
}

.accordion3 li { 
    display: block;
    list-style: none; 
    width: 100%; 
    margin: 20px; 
    padding: 10px; 
    border-radius: 8px; 
    background: #e3edf7; 
    background: #c8cdd1; 
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15), 
                -6px -6px 10px -1px rgba(206, 199, 199, 0.7), 
                -6px -6px 10px -1px rgba(255,255,255,0.7);
}

.accordion3 li label { 
    display: flex; 
    font-family: "Montserrat", serif;
    align-items: center;
    padding: 10px; /* master setting for moving the boxes in the y-axis */
    font-size: 22px; 
    font-weight: 500;   
    cursor: pointer; 
}

label::before { 

    content: '+'; /*adds a plus icon near the accordion title*/ 
    margin-right: 10px; /*margin for moving accordion title */ 
    font-size: 24px; 
    font-weight: 600;
}

input[type="checkbox"] { 
    display: none; 
}

.accordion3 .material { 
    color: #555; 
    padding: 0 10px; 
    line-height: 26px; 
    max-height: 0; /* size y-axis */
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.accordion3 input[type="checkbox"]:checked + label + .material { 
    max-height: 400px;
    padding: 10px 10px 20px;
}

.accordion3 input[type="checkbox"]:checked + label::before { 
    content: '-';
}

/*
=================================================================
    Section 4 Services
=================================================================
*/
.content-section-four {
    background: rgba(255, 255, 255, 0.4); /* Lighter background for glass effect */
    padding: 24px; /* Add padding for spacing */
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add shadow for emphasis */
    backdrop-filter: blur(10px); /* Apply the glass blur effect */
   -webkit-backdrop-filter: blur(10px); /* Add support for WebKit browsers */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Optional: Add a subtle border */
    overflow-x: hidden;
    overflow-y: hidden;
    transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
    transform-origin: center;
    width: auto;
    max-width: 800px;
}

.content-section-four:hover{ 
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
}

.container-four { 
    width: 90%;
    display: grid;
    margin-left: auto; 
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px; 
    margin: 30px auto;
    align-items: center;
    padding-top: 40px;
}


.image-section-four img { 
    width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3); /* Deeper and softer shadow */
}


.content-section-four .title-four { 
    font-style: normal;
    font-optical-sizing: auto;
    font-size: 20px;
    font-family: sans-serif;
    color: #262a2b;
    text-align: center;
}

.content-section-four .content-four h3 {
    margin-top: 20px; 
    color:#6498c1;
    font-family: sans-serif;
    font-size: 23px;
    font-optical-sizing: auto;
    text-align: center;

}

.content-section-four .content-four p { 
    margin-top: 15px; 
    font-family: serif;
    font-weight: 500; 
    font-size: 1.188rem;   
    line-height: 1.4;             
    color:#3d4446;
    padding-left: 10%;
    max-width: 650px;             
    font-optical-sizing: auto;
    text-align: justify;          
    text-align-last: left;        
    word-spacing: 0.01em;         
    hyphens: manual;             
    overflow-wrap: normal;       
}


.content-section-four .content-four .button4{ 
    margin-top: 30px;     
}

.content-section-four .content-four .button4 a { 
    background-color: #3d3d3d;
    padding: 12px 40px; 
    text-decoration: none; 
    color: #fff; 
    font-size: 27px; 
    letter-spacing: 1.5;
    border-radius: 10px;
    box-shadow: 1rem 1.6rem 1.6rem -0.90rem hsla(0, 0%, 0%, 0.25);
}

.content-section-four .content-four .button4 a:hover { 
    background-color: #FF4742; 
    color:#fff;
}

.container-four .social i { 
    color:#256680; 
    font-size: 20px; 
    padding: 0px 2px;
    padding-top: 80px;
}

.container-four .social i:hover { 
    color: #FF4742; 
}

@media screen and (max-width: 900px) { 
    .container-four {
    grid-template-columns: repeat(1, 1fr);
    }
    
    .image-section-four img{ 
        width: 100%;
    }
}

/*
=================================================================
    Accordion Section 4
=================================================================
*/

.accordion4 {
  display: flex;
  flex-direction:column; /* Stack accordion items vertically */
  width: auto;
  padding-right: 30px;
  padding-top: 20px;
  max-width: auto;  
}

.accordion4 .material p { 
  overflow-x: auto;
  padding: 10px;
  hyphens:auto;
  text-align: justify;
  font-size: 18px;
  color:#3d4446;
}


.accordion4 li { 
  display: block;
  list-style: none; 
  width: 100%; 
  margin: 20px; 
  padding: 10px; 
  border-radius: 8px; 
  background: #e3edf7; 
  background: #c8cdd1; 
  box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15), 
                -6px -6px 10px -1px rgba(206, 199, 199, 0.7), 
                -6px -6px 10px -1px rgba(255,255,255,0.7);         
}

.accordion4 li label {
  display: flex; 
  font-family: "Montserrat", serif;
  align-items: center;
  padding: 10px; /* master setting for moving the boxes in the y-axis */
  font-size: 22px; 
  font-weight: 500;   
  cursor: pointer; 
}

label::before {
  content: '+'; /*adds a plus icon near the accordion title*/ 
  margin-right: 10px; /*margin for moving accordion title */ 
  font-size: 24px; 
  font-weight: 600;
}

input[type="checkbox"] { 
  display: none; 
}

.accordion4 .material { 
  color: #555; 
  padding: 0 10px; 
  line-height: 26px; 
  max-height: 0; /* size y-axis */
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

.accordion4 input[type="checkbox"]:checked + label + .material { 
  max-height: 400px;
  padding: 10px 10px 20px;
}

.accordion4 input[type="checkbox"]:checked + label::before { 
  content: '-';
}


/* Animation for background movement */
@keyframes moveBackground {
    0% {
        background-position: center center;
    }
    50% {
        background-position: left top;
    }
    100% {
        background-position: center center;
    }
}

@media screen and (max-width: 900px) {
    .image-section-one img,
    .image-section-two img,
    .image-section-three img,
    .image-section-four img {
        width: 100%; /* Ensure full-width images on smaller screens */
    }

    .container-one, .container-two, .container-three, .container-four {
        grid-template-columns: 1fr; /* Single-column layout on small screens */
    }
}

/*
=================================================================
    Accordion Universal
=================================================================
*/
.accordion1 .material p { 
  padding: 0;
  white-space: none;
  hyphens: auto;
  overflow-y: hidden;
}

.accordion2 .material p { 
  padding: 0;
  white-space: none;
  hyphens: auto;
  overflow-y: hidden;
}

.accordion3 .material p { 
  padding: 0;
  white-space: none;
  hyphens: auto;
  overflow-y: hidden;
}

.accordion4 .material p { 
 padding: 0;
 white-space: none;
 hyphens: auto;
 overflow-y: hidden;
}


/*
=================================================================
    Footer Section
=================================================================
*/


.footer-container { 
  font-family: sans-serif;
  background-color: #212329;
  padding: 4rem 0 2rem 0;
}

.footer { 
  width: 80%;
  height: auto;
  background-color: #212329;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  font-family: sans-serif;
  font-size: 17px;
}

.footer-heading { 
  display: flex;
  flex-direction: column;
  margin-right: 4rem;
}

.footer-heading h2 { 
  margin-bottom: 2rem;
  font-family: serif;
}

.footer-heading a { 
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-heading a:hover { 
  color: red;
  transition: 0.3s ease-out;
}

.footer-email-form h2 { 
  margin-bottom: 2rem;
  font-family: sans-serif;
}

#footer-email {
  width: 250px;
  height: 40px;
  border-radius: 4px;
  outline: none;
  padding-left: 0.5 rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

#footer-email::placeholder { 
  color: #b1b1b1;
}

#footer-email-btn { 
  width: 100px;
  height: 40px;
  border-radius: 4px;
  outline: none; 
  border: none;
  color: #000000;
  font-size: 17px;
  font-family: sans-serif;
}

#footer-email-btn:hover { 
  cursor: pointer;
  background-color: red;
  transition: all 0.4 ease-out;
}

/*
=================================================================
    @media Footer
=================================================================
*/

@media screen and (max-width: 1150px) { 
  .footer { 
    height: auto;
    align-items: center;
  }
  .footer-email-form{ 
    margin-top: 4rem;
  }
}

@media screen and (max-width: 1150px) { 
  .footer { 
    height: auto;
    
  }   
}

@media screen and (max-width: 820px) { 
  .footer { 
    padding-top: 2rem; 
  }
}

@media screen and (max-width: 720px) { 
  .footer2 { 
    display: none;
  }
  .footer-email-form { 
    margin-top: 4rem;
  }

  .footer1 { 
    padding-left: 90px;
  }
  .footer3 { 
    padding-top: 20px;
  }
}

/*
=================================================================
    @media Queries Footer
=================================================================
*/
@media screen and (max-width: 1150px) { 
  .footer { 
    height: auto;
    align-items: center;
  }
  .footer-email-form{ 
    margin-top: 4rem;
  }
}

@media screen and (max-width: 1150px) { 
  .footer { 
    height: auto;
    
  }   
}

@media screen and (max-width: 820px) { 
  .footer { 
    padding-top: 2rem; 
  }
}

@media screen and (max-width: 720px) { 
  .footer2 { 
    display: none;
  }
  .footer-email-form { 
    margin-top: 4rem;
  }

  .footer1 { 
    padding-left: 76px;
  }
  .footer3 { 
    padding-top: 20px;
  }
}
  
/*
=================================================================
    @media Queries Accordion
=================================================================
*/
  
  @media screen and (max-width: 768px) { 
    .content-section-one 
    { 
    height: auto;
    /*padding-left: 5px;*/
    min-width: auto;
    border-radius: 10px;
    }
  }
  
  .content-section-one .title-one { 
    text-align: center; 
    font-size: 20px;
  }

  .content-section-one .content-one h3 { 
    text-align: center;
    font-size: 22px;
  }

  @media screen and (max-width: 768px) { 
  .content-section-one .content-one p { 
    padding-right: auto;
    margin-right: 10px;
    line-height: 1.5;
    hyphens: auto;
    font-size: 1.25rem;
  }

  .content-section-two 
    { 
    height: auto;
    /*padding-left: 5px;*/
    min-width: auto;
    border-radius: 10px;
    }
    .content-section-three 
    { 
    height: auto;
    /*padding-left: 5px;*/
    min-width: auto;
    border-radius: 10px;
    }
    .content-section-four 
    { 
    height: auto;
    /*padding-left: 5px;*/
    min-width: auto;
    border-radius: 10px;
    }

  .content-section-two .title-two { 
    text-align: center; 
    font-size: 20px;
  }
  .content-section-two .content-two h3 { 
    text-align: center;
    font-size: 22px;
  }
  .content-section-two .content-two p { 
    padding-right: auto;
    margin-right: 10px;
    line-height: 1.5;
    font-size: 1.25rem;
    hyphens: auto;
  }

  .content-section-three .title-three { 
    text-align: center;
    font-size:  20px;
  }
  .content-section-three .content-three h3 { 
    text-align: center;
    font-size: 20px;
  }

  .content-section-three .content-three p { 
    padding-right: auto;
    margin-right: 10px;
    line-height: 1.5;
    hyphens: auto;
    font-size: 1.25rem;
    
  }

  .content-section-four .title-four { 
    text-align: center;
    font-size: 20px;
  }

  .content-section-four .content-four h3 { 
    text-align: center;
    font-size: 22px;
  }
  .content-section-four .content-four p { 
    padding-right: auto;
    margin-right: 10px;
    line-height: 1.5;
    hyphens: auto;
    font-size: 1.25rem;
  }

  .accordion1 .material p { 
    line-height: 1;
    overflow-y: hidden;
    overflow-x: hidden;
  }

  .accordion2 .material p { 
    line-height: 1;
    overflow-y: hidden;
    overflow-x: hidden;
  }
  
  .accordion3 .material p { 
    line-height: 1;
    overflow-y: hidden;
    overflow-x: hidden;
  }

  .accordion4 .material p { 
    line-height: 1;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}


@media screen and (max-width: 768px) { 
 
  .banner-section .banner-area h2 {
    margin-top: 30%;
    text-align: center;
    font-size: 50px;
  }
}

/*
=================================================================
    @media 1440 x 900 !Small laptop Screen
=================================================================
*/

@media screen and (max-height: 900px) {

  .content-section-one  p { 
    padding-right: 7%;
  }

  .content-section-two p { 
    padding-right: 7%;
  }

  .content-section-three p { 
    padding-right: 7%;
  }

  .content-section-four p { 
    padding-right: 7%;
  }
}


@media screen and (max-width: 2560px) { 
  .banner-section { 
    min-height: 80vh;
  }
}

/*
=================================================================
    @media 1024 x 768 ipad
=================================================================
*/

/* iPad Landscape (1024 x 768) */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Adjust grid layouts, font sizes, or other elements for landscape mode */
  .container-one,
  .container-two,
  .container-three,
  .container-four {
    grid-template-columns: repeat(2, 1fr); /* Example: two columns layout */
  }

  .banner-area h2 {
    font-size: 60px;
    padding-top: 30%;
    text-align: center;
  }
  
  /* Add more iPad landscape-specific overrides below */
}

/* iPad Portrait (768 x 1024) */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Adjust layouts for portrait mode */
  .container-one,
  .container-two,
  .container-three,
  .container-four {
    grid-template-columns: 1fr; /* Example: single column layout */
  }

  .banner-section .banner-area h2 { 
    padding-top: 32%;
  }
}

@media screen and (max-width: 64rem) and (max-height: 48rem) {
  /* Adjust header and navigation */
  .header {
    padding: 0.5rem;
  }
  .nav__logo {
    font-size: 1rem;
  }
  
  .container-one {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .container-two {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .container-three {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .container-four {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  /* Banner Section */
  
  .banner-section .banner-area h2 { 
    padding-top: 32%;
  }
}

