body{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    background-color: white;
}


                                                                                /* for navbar */

.flexing{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-evenly;
    align-content: space-between;
    background-color: #4e99c5;
}
.navbar{
    width: 100%;
    height:50px;
    background-color: #4e99c5;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.logo{
    background-color: #4e99c5;
}
.menu{
    background-color: #4e99c5;
}
.searchbar{
    background-color: #4e99c5;
    margin-top: -5px;
    margin-right: -20px;
}

#logo_image{
    height:50px;
    width:50px;
    margin-top:5px;
    margin-left:-100px;
    border-radius: 2px;
}

#names{
    display:flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content:center;
    list-style: none;
    margin-top: 15px;
    background-color:  #4e99c5;
    gap: 50px;
}

.search-input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 300px;
}

.search-button {
    padding: 10px 15px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.search-button:hover {
    background-color: #004494;
}

.search-form{
    margin-top: 15px;
    background-color:  #4e99c5;
    display: flex;

}

#names a {
    text-decoration: none; 
    color: black; 
    background-color: #4e99c5; 
    font-size: x-large; 
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
    font-weight: 200;
    padding: 10px; 
    transition: background-color 0.3s, color 0.3s; 
}

#names a:hover {
    background-color: #3a7a95;
    color: white; 
    border-radius: 5px;
}


                                                        /* for vision mission values */

.container{
    margin-top: 30px;
    display: flex;
    gap: 30px;
    margin-bottom:50px;
}
.d{
    width: 500px;
    height: 220px;
    background-color: #376a61;
    position:absolute;
    margin-top: 240px;
    /* border-radius: 20px; */
}

.d1{
    margin-left: 270px;
    width: 290px;
    height: 290px;
    position: relative;
    margin-top: 30px;

}
.left-panel{
    width: 40%;
}
.right-panel{
    margin-right: 12px;
    width: 60%;
}

.bullet-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

.bullet-section p {
    text-align: justify;
    width: 97%;
    margin-bottom: 10px;
    font-size: 20px;
    margin-left: 10px;
}
.design{
    border-bottom: 7px solid #376a61;
    border-left:5px solid #376a61;
    border-right: 5px solid #376a61;
    border-radius: 10px;

}



                                                                                /* for about  */
.store {
    padding: 0 20px;
}

.store p {
    width: 100%;
    font-size: 23px;
    text-align: justify;
}



                                                                    /* for Commitment to exxcelence */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital@1&family=Oswald:wght@500&display=swap');
@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');

.section-title {
font-weight: 700; 
font-family:'Oswald', sans-serif;
}

/* grid layout */
ol, ol::before, ol::after, 
ol *, ol *::before, ol *::after { margin: 0; padding: 0; box-sizing: border-box }
ol { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  
  width: min(60rem, calc(100%));
  margin-inline: auto;
  padding-block: 1rem;
  
  list-style: none;
  counter-reset: count;
}

/* card layout/styling */
ol > li {
  --card-background-color: #f0f0f0;
  --card-text-color: #0F0F0F;
  --card-border-radius: 0.5rem;
  --card-padding-block: 1.8rem;
  --card-padding-inline: 1.3rem;
  
  --outset-size: 0.75rem;
  --outset-background-color: #e5e5e5;
  
  --number-font-size: 3rem;
  --number-overlap: 0.5rem;
  --number-font-family: 'Oswald', sans-serif;
  --number-font-weight: 500;
  
  margin: var(--outset-size);
  margin-top: calc(var(--number-font-size) - var(--number-overlap));
  border-radius: var(--card-border-radius);
  padding-block: var(--card-padding-block);
  padding-inline: var(--card-padding-inline);
  
  color: var(--card-text-color);
  background-color: var(--card-background-color);
  box-shadow: 
    inset 1px 1px 0px rgb(255 255 255 / .5),
    inset -1px -1px 0px rgb(0 0 0 / .25),
    calc(var(--outset-size) * .25) calc(var(--outset-size) * .25) calc(var(--outset-size) * .5) rgb(0 0 0 / .25);
  position: relative;
  counter-increment: count;
}

ol > li::after{
  content: counter(count, decimal-leading-zero);
  position: absolute;
  
  bottom: calc(100% - var(--number-overlap));
  left: 50%;
  transform: translateX(-50%);
  
  color: var(--accent-color);
  font-family: var(--number-font-family);
  font-weight: var(--number-font-weight);
  font-size: var(--number-font-size);
  line-height: 1;
  z-index: -1;
}
ol > li::before{
  content: "";
  position: absolute;
  width: calc(100% + (var(--outset-size) * 2));
  height: 100%;
  bottom: calc(var(--outset-size) * -1);
  left: calc(var(--outset-size) * -1);
  z-index: -1;
  
  border-bottom-left-radius: calc(var(--card-border-radius) + var(--outset-size));
  border-bottom-right-radius: calc(var(--card-border-radius) + var(--outset-size));
  
  background-color: var(--outset-background-color);
  
  background-image: 
    linear-gradient(to left, var(--outset-background-color) calc(var(--outset-size) * 2), transparent 0),
    linear-gradient(135deg, var(--accent-color) 80%, var(--outset-background-color) 0);    
}

/* card content */
h1 {
  font-weight: 900;
  font-size: 2.5rem;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  font-weight: normal
}
.icon{
  font-size: 2rem;
  text-align: center;
  margin-bottom: calc(var(--card-padding-block) * .5);
}
.title {
    font-weight: 900;
    font-size:27px;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  color: var(--accent-color)
}
.descr {
  color: var(--text-color);
  font-size: 0.75rem;
  font-family: 'Merriweather', serif;
  text-align: center;
}



                                                                                    /* Foundational Values */
:root {
    --primary-orange: #FF6F00;
    --light-gray: #f2f2f2;
    --sky-blue: #45C2E0;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --accent-color: #6A829A;
  }


  .containerr {
    margin-top: 70px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin-left: 75px;
    /* margin: 0 auto 0px auto; */

  }

  .card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-80px);
  }

  .im{
    margin-top: -25px;
  }
  .i{
    border-radius: 20px;
  }

  .card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  .card p {
    font-size: 17px;
    color: #2f2f2f;
    font-style:italic;
    margin-bottom: 10px;
    margin-top: -5px;
  }


  .f {
    background-color: var(--sky-blue);
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    height:280px;
    margin-top: -200px;
    position: relative;
    z-index: 0;
  }

  .f::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: inherit; /* Inherit the same blue color */
    filter: blur(5px);
    z-index: -1;
  }

  /* Icons: Using Font Awesome CDN */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');


                                                                            /* for footer part */
.foot{
    /* margin-top: 40px; */
    background-color: rgb(27, 28, 30);
    height: 250px;
    width: 100%;
    position: relative;
}

.footerr{
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: space-evenly;
}

#divi{
    width:1px;
    height:70%;
    background-color:rgba(245, 245, 245, 0.692);
    position: absolute;
    margin-top: 30px;
}

#address{
    color:rgba(245, 245, 245, 0.692);
    margin-top: 30px;
    font-size: 17px;
    line-height: 7px;
    font-style: normal;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#copywrite{
    color:rgba(245, 245, 245, 0.692);
    text-align: center;
    margin: 40px;
}




.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;

}

.extra-card {
  display: none;
}



/* ========================= */
/*  Mobile (max-width: 768px) */
/* ========================= */

/* for navbar */
@media screen and (max-width: 768px) {
  .flexing{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content:space-evenly;
    align-content:center;
    background-color:#4e99c5;
}

   .hamburger {
    display: block;
    width:50%;
  }

  .menu {
    display: none;
    width: 100%;
  }

  .menu.active {
    display: block;
    position: absolute;
    z-index: 10;
  }

  #names {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
  }

  #names li {
    width: 100%;
    text-align: center;
  }

  #names a {
    display: block;
    width: 100%;
  }

  .searchbar{
     display: none;
  }
  .logo{
      background-color: #4e99c5;
      width: 50%
  }

#logo_image{
    width:25%;
     margin-left:10%;
     margin-top: 12px;
     height: 37.6px;
    border-radius: 2px;
}

  #hamb{
     width:25%;
    border-radius: 2px;
    margin-left:85%;

  }
}

/*For mission vission values i.e container part */

@media screen and (max-width: 768px) {

  .container {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .left-panel,
  .right-panel {
    width: 100%;
  }

  .d {
    display: none;   
  }

  .d1 {
    width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .bullet-section p {
    font-size: 16px;
    width: 97%;
  }

  .design {
    border-width: 4px;
  }
}


/* For about part- */
@media screen and (max-width: 768px) {
  .store p {
    font-size: 20px;
  }
}



/* For commitment toward excellance */
@media screen and (max-width: 768px) {

  .section-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
}


/* For Foundational values */
@media screen and (max-width: 768px) {
   .extra-card {
    display: flex;   /* show only on mobile */
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);  /* 2 cards */
    gap: 20px;
    max-width: 95%;
    margin: auto;
  }

  .card {
    padding: 20px 10px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 14px;
  }

  .card:hover {
    transform: translateY(-10px);   /* small effect */
  }

  .i {
    width: 100%;
    height: auto;
  }
}



/* for footer*/

@media screen and (max-width: 768px) {

  .foot{
    height: auto;
    width: auto;
  }
  .footerr{
    flex-direction: column;   /* stack */
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  #divi {
    display: none;
  }

  .address {
    width: 90%;
  }

  #copywrite {
    margin: 20px;
    font-size: 14px;
  }
}