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

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

/*
=================================================================
    Import Google Fonts
=================================================================
*/

@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");

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

.section-one 
    { 
    width: 100%;
    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-y: hidden;
    overflow-x: hidden;
    min-height: auto; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 50); /* Adds a blur effect */
    }

.section-two 
    { 
    width: 100%;
    background-image: url("../background/cool-background7.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;    
    overflow-y: hidden;
    overflow-x: hidden;
    min-height: auto; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 50); /* Adds a blur effect */
    }

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

/*
=================================================================
    Navigation Section
=================================================================
*/

/*=============== 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-three {
  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 Section
=================================================================
*/

.banner-section { 
    height: 100%; 
}

.banner-section {
    margin-top: 0px; /* Account for the top fixed navigation */
    height: 900px;
    text-align: center;
    padding: 40px 0;
    position: relative;
    background-image: url(../background/bannerimage.png);
    background-size: cover;
    background-position: center center;
}

.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%; /* positioning of the Cloud Infastructure Services */
    font-size: 80px;
    color: #fff;
    z-index: 2;
    font-family: "Montserrat", serif;
}
    


/*
=================================================================
    Section 1
=================================================================
*/



/*.title1 h1:after { 
    content:""; 
    height: 4px;
    width: 290px;
    background-color: #222; 
    border-radius: 6px;
    position: relative; 
    display: block;
    margin: auto;
} */

.content { 
    width: 85%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px; 
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.4); /* Lighter background for glass effect */
    padding: 39px; /* Add padding for spacing */
    border-radius: 10px;
}

.content .article{ 
    background: rgba(255, 255, 255, 0.4); /* Lighter background for glass effect */
    padding: 39px; /* 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 .article h2{ 
    color: #242222;
    font-size: 22px; 
    line-height: 1.2;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    align-items: center;
}


/*
=================================================================
    Paragraph section 2
=================================================================
*/

  .article p{ 
    margin-top: 15px;
    font-size: 19px;
    line-height: 1.5; 
    color: #302727; 
    font-family: serif;
    font-optical-sizing: auto;
    font-weight: 500; 
    font-style: normal;
    max-width: 700px;
    text-align: justify;
    word-spacing: .0.01rem;
    margin-right: 20px;
    
}


.content .article a:hover { 
    background-color: #FF4742; 
    color:#fff;
}

.image-section{
    width: 100%;
    margin:auto; 
}

.image-section img{ 
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Lighter and more subtle shadow */
}

/*
=================================================================
    @media query 1 
=================================================================
*/


@media screen and (max-width: 900px) { 
    .content {
    grid-template-columns: repeat(1, 1fr);
    }
    
    .article{ 
        text-align: center;
    }
    
}


/*
=================================================================
    Section two
=================================================================
*/

.container-two .row-two{ 
    width: auto; 
    margin:auto;
}

.container-two .row-two .heading-section{ 
    max-width: 1120px;
    text-align: center;
    margin:auto;
}

.container-two .row-two .heading-section h1{
    padding-top: 30px;
    font-size: 29px;
    text-align: center;
    color: #222;
    font-optical-sizing: auto;
    text-transform: uppercase;
    font-family: "Montserrat", serif;
    font-weight: 500;
}

/* New */
/*.container-two .row-two .heading-section h1:after { 
   content:""; 
   height: 4px;
   width: 290px;
   background-color: #222; 
   border-radius: 6px;
   position: relative; 
   display: block;
   margin: auto;
} */



.container-two .row-two .heading-section p {
    background: rgba(255, 255, 255, 0.4); 
    padding: 28px; 
    border-radius: 50px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
    max-width: auto; 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    overflow-x: hidden;
    overflow-y: hidden;
    font-size: 20px;
    text-align: justify;
    word-wrap: break-word;                            
    hyphens: auto;            
    margin-top: 19px;
    font-family: serif;
    font-weight: 500;
    line-height: 1.3;
    font-style: normal;
    color:#3d4446;
}

.content-section-two{ 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.content-section-two .about-card{ 
    flex: 1; 
    margin: 40px;
}

.content-section-two .about-card img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); 
}

.content-section-two .about-card h4{
    margin-top: 20px;
    font-size: 25px;
    color: #222;
    font-weight: 500;
    text-align: center;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: "Montserrat", serif;
    padding: 10px 0px;
    width: 100%;
}

.content-section-two .about-card h4:after { 
    content:""; 
    height: 6px;
    width: 80px;
    background-color: #222; 
    border-radius: 6px;
    position: relative; 
    display: block;
    margin: auto;
    margin-top: 5px;
} 


/* Paragraph Section 2*/

.content-section-two .about-card p{ 
    display: flex;
    margin-top: 25px;
    color:#3d4446;
    line-height: 1.5;
    font-size: 21px;
    font-weight: 500;
    font-optical-sizing: auto;
    padding-top: 20px;
    font-family: serif;
    font-style: normal;
    text-align: auto;
    text-align: justify;
    word-wrap: break-word;
    hyphens: auto;
    word-spacing: -2px;
}


.content-section-two .about-card p {
    background: rgba(255, 255, 255, 0.4); 
    padding: 30px; 
    border-radius: 10px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
    max-width: auto; 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    overflow-x: hidden;
    overflow-y: hidden;
    color:#3d4446;
}

@keyframes moveBackground {
    0% {
        background-position: center center;
    }
    50% {
        background-position: left top;
    }
    100% {
        background-position: center center;
    }
}


@media screen and (max-width: 768px) { 
 .content-section-two { 
    flex-direction: column;
 }

 .content-section-two .about-card img { 
    width: 100%;
 }
}

/*
=================================================================
    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 Queries Footer Section
=================================================================
*/

@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 Phone !main
=================================================================
*/
  
  
  @media screen and (max-width: 768px) { 
    .heading-section p { 
     width: 90%;
     margin-left: 22px;
     line-height: 1;
    }

    .article p{ 
      padding-right: auto;
      margin-right: 10px;
      line-height: 1.5;
      hyphens: auto;
      font-size: 20px;
      width: 270px;
      overflow-x: hidden;
    }

    .banner-area h2 {
      padding-top: 70%;
      text-align: center;
      font-size: 50px;
    }
  
    .article { 
      height: auto;
    }
  }

/*
=================================================================
    @media small laptop screen !main
=================================================================
*/


  @media screen and (max-width: 1440px) { 
    .content .article{ 
      
      padding-top: 20px;
      padding: 15;
    }

    .content p { 
      font-size: 19px;
      line-height: 1.3;
      

    }

    .content .article h2 { 
      padding-bottom: 23px;
    }
  }

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

    .article p { 
      padding-left: 5%;
    }
  
  }
  
  @media screen and (max-width: 2560px) { 
    .banner-section { 
      min-height: 80vh;
    }
  }

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

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

  .content-section-two { 
    flex-direction: column;
 }
  
  .container-two {
    grid-template-columns: 1fr;
    justify-items: center;
  }

   /* Banner Section */
  
   .banner-section .banner-area h2 { 
    padding-top: 32%;
  }
}

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

/* .content { 
    justify-content: center;
    margin-right: 14%;
  } */
}


