/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Feb 24, 2022, 11:49:18 PM
    Author     : MSI PL60
*/
/* Replace current font import with: */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');

/* Update base font declarations */
*{
  font-family: 'Rubik', sans-serif;
}

body {
  font-family: 'Rubik', sans-serif;
}

html {
  height: 100%;
  overflow: hidden;
}


body {
  height: 100%;
  overflow: auto;
  overscroll-behavior: none;  /* Prevents bouncy scroll on modern browsers */
  -webkit-overflow-scrolling: touch; /* For iOS devices */
  margin: 0;
  padding: 0;
}

.background{
  width:100%;
  height:100%;
  background-color: red;
  background-image: linear-gradient(to bottom right, white, yellow);
}

.menu-bar{
  float: right;
  padding-right:50px;
  text-align:center;
  margin-bottom:0;
}

.menu-bar ul{
  display:inline-flex;
  list-style:none;
  color:grey;
  font-size:18px;
  font-weight:bold;
  transition: .3s;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;  /* Changed from Arial */
}

.menu-bar ul li{
  width:150px;
  margin-top:10px;
  margin-left:10px;
  padding:10px;
}

.menu-bar ul li a{
  text-decoration: none;
  color:grey;
}

.menu-bar ul li :hover {
  color:#F7B300;

}
.active {
  color:#F7B300;
  border-radius: 3px;
}

.menu-bar .fa{
  margin-right:5px;
}

.sub-menu-1{
  display:none;
  position: absolute;
}

.menu-bar ul li:hover .sub-menu-1{
  display:block;
  background: #fff;
  margin-top:15px;
  margin-left: 15px;
  transition: 10s;
}

.menu-bar ul li:hover .sub-menu-1 ul{
  display:block;
  margin:10px;
}

.menu-bar ul li:hover .sub-menu-1 ul li{
  width:150px;
  padding:10px;
  border-bottom: 1px dotted grey;
  background: transparent;
  border-radius:0;
  text-align:left;
}

.menu-bar ul li:hover .sub-menu-1 ul li:last-child{
  border-bottom: none;
}

.menu-bar ul li:hover .sub-menu-1 ul li a:hover{
  color:#FF7D7D;
}

.wrapper{
  width: 100%;
  overflow:hidden;
    background-color: #f8f9fa;
  text-align: justify;
}

.row{
  width:100%;
  padding: 50px 100px;
  margin-left:35px;
  margin-bottom:20px;
}

.image-section{
  margin:auto;
  width:30%;
  float:left;
  margin-top: 100px;
}

.image-section img{
  width:100%;
  height:auto;
}


.content{
  float:right;
  width:60%;
  margin-left: 120px;
  text-align: justify;
}

.content h1{
  float:right;
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 3.5px;
  margin-top: 25px;
  color:#222;
  font-weight: bold;
}

.content h2{
  font-size: 32px;
  font-family:sans-serif;
  color:#b60112;
  margin-top: 25px;
}

.background-p{
  margin-top:90px;
  font-family: 'Poppins', sans-serif;  /* Changed from Arial */
  font-weight: 300;
  line-height: 1.3;
  font-size: 16px;
  letter-spacing: 1px;
}

.vision-p{
  font-family: 'Poppins', sans-serif;  /* Changed from Arial */
  margin-top: 100px;
  font-weight: 300;
  line-height: 1.3;
  font-size: 16px;
  letter-spacing: 1px;

}


.container{
  margin-top: 50px;
  background-color: #fff;
  text-align: center;
  padding-bottom: 20px;
}

.container h2{
  text-align: center;
  padding: 20px;
  font-size:32px;

}
.container img{
  height:130px;
  width:150px;
  object-fit:scale-down;
  padding:10px;
}


.copy{
  padding-top: 20px;
}

.contact-container{
  max-width:100%;
  margin: 50px 50px 40px;

}



.contact-container h1{
  font-size:32px;
}

.contact-box{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 40px;
}

.company-brand {
  text-align: center;
  margin-bottom: 30px;
}

.contact-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  color: #0063be;  /* Keeping the brand blue color */
  font-size: 24px;
  margin-bottom: 15px;
}

.card-content {
  color: #333333;
}

.card-content p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail h4 {
  color: #0063be;  /* Keeping the brand blue color */
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-detail a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: #0063be;  /* Keeping the brand blue color */
}

.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
  height: 150px;       /* fixed height */
  resize: none;        /* prevent manual resizing */
}


.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0063be;  /* Keeping the brand blue color */
}

.submit-btn {
  background: #0063be;  /* Keeping the brand blue color */
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #004e96;  /* Slightly darker shade of the brand blue */
}

@media (max-width: 768px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
}
.contact-left{
  float:right;
  width: 60%;
  padding:40px 60px;
  font-size:20px;
  margin-left: 30px;
}

.contact-left h3{
  font-size:32px;
}


.contact-right{
  float:left;
  width: 40%;
  padding:40px;
  background: #f3f3ed;
  color:#000000;
  border-radius: 25px;

}

.contact-right td{
  font-size:16px;
}

.contact-right h2{
  margin-left:10px;
  font-size:32px;
}

.contact-right h3{
  margin-left:10px;
  font-size:25px;
}


.contact-container h1{
  margin-bottom:10px;
}

.contact-container p{
  margin-bottom:40px;
  font-size:16px;
}

.contact-icons{
  width:50px;
  height:50px;
  object-fit: cover;
}

.input-row{
  display:flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.input-row .input-group{
  flex-basis: 45%;
}

input{
  width:900px;
  border:none;
  border-bottom: 1px solid #ccc;
  outline:none;
  padding-bottom: 10px;
}

.input-group textarea{
  width: 800px;
  height: 45px;
  border:1px solid #ccc;
  outline:none;
  padding:10px;
  resize:none;
  margin-right:10px;
  overflow: hidden;
}

.input-group label{
  font-size:16px;
}

.input-group .message-textarea{
  height: 70px;

}

label{
  margin-bottom: 6px;
  display: block;
  color:#000;
}

button{
  font-size:16px;
  background: #000000;
  width:100px;
  border: none;
  outline: none;
  color:#fff;
  height:35px;
  border-radius: 30px;
  margin-top: 20px;
  box-shadow:0px 5px 15px 0px rgba(28,0,181,0.3);
}

button:hover{
  cursor: pointer;
}

.contact-left h3{
  color:#000;
  font-weight:600;
  margin-bottom: 30px;
}

.contact-left textarea{
  font-size:16px;
}

.contact-right h3{
  font-weight: 600;
  margin-bottom: 30px;
}

tr td:first-child{
  padding-right:20px;
}

tr td{
  padding-top:20px;
}

.slider img{
  width:  200px;
  height: 100px;
  object-fit: fill;
}

.photo-grid {

  display:flex;
}

.photo-grid-header{
  text-align:center;
  font-size:32px;
  margin-top: 30px;
  word-wrap: break-word;
  text-transform: uppercase;
  font-weight: bold;
}

.inner-photo-grid {
  box-shadow: -1px 0 10px #0000;
  margin:auto;
}



.inner-photo-grid-text {
  padding:10px;
  width: 400px;
  height:180px ;
  background-color: #fff;
  box-shadow: -1px 0 10px #0000;

}

.inner-photo-grid-text h2{
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;  /* Changed from Arial */
}

.inner-photo-grid-text p{
  font-family: 'Poppins', sans-serif;  /* Changed from Arial */
}

.inner-photo-grid img {
  width:  300px;
  height: 200px;
  object-fit: fill;
  display:flex;
  text-align: center;
}

@media screen and (max-width: 900px) {
	
  .inner-photo-grid {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .inner-photo-grid {
    flex: 100%;
    max-width: 100%;
  }
}
.core-works-container{
  margin:auto;
  margin-top:50px;
  margin-bottom:50px;
  max-width:600px;
  text-align: center;
}

.core-works-notes {
  text-align: justify;
  font-family: 'Poppins', sans-serif;  /* Changed from Arial */
  font-size:16px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left:10px;
}

.service-section{
  padding:50px 60px;
}

.service-section h1{
  text-align: center;
  text-transform: uppercase;
}

.service-section h1::after{
  content:"";
  width:210px;
  height:5px;
  background-color: #d8db1d;
  display: flex;
  margin: auto;
}

.cards-section{
  text-align: center;
  margin-top:60px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap:20px;
}

.cards-section>div{
  padding:30px 10px;
  background-color: #5e5e5e;
  cursor:pointer;
}

.cards-section>div:hover{
  background-color: #8c8c8c;
  transition: 0.2s ease;
}

.cards-section i{
  height:60px;
  width:60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #d8db1d;
  color:#fff;
  font-size: 24px;
  margin-bottom: 25px;
}

.cards-section i:hover{
  background-color: #5e5e5e;
  transition: 0.5s ease;
}

.cards-section h2{
  font-family: sans-serif;
  color:#fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.cards-section p{
  color:#d4d4d4;
  margin-bottom: 15px;
  line-height: 1.5;
}

.cards-section a{
  margin-top:10px;
  display: inline-block;
  color:#fff;
  background-color: #d8db1d;
  padding: 10px 20px;
  font-size:16px;
  text-decoration: none;
  letter-spacing: 1px;
}

.cards-section a:hover{
  background-color: #5e5e5e;
  transition: 0.5s ease;
}

@media screen and(max-width: 700px){
  .cards-section{
    grid-template-columns: repeat(1,1fr);
  }
}

.nav-container{
  max-width: 1920px;
  margin:auto;
}

.header{
  position: relative;
  width: 100%;
  left:0;
  top:0;
  z-index: 99;
  padding: 1px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  background-color: #f3f3ed;
}

.header-main{
  background-color: #f3f3ed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-radius: 4px;
}
.header .logo{
  float:left;
}

.header .logo img{
  width:260px;
  height:50px;
  padding: 0 10px;

}
.header .logo a{
  font-size: 30px;
  text-transform: capitalize;
  color: #D1C52E;
  font-weight: 600;
}
.header .nav-menu{
  padding: 0 60px;
  padding-top:10px;

}
.header .menu > .menu-item{
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu > .menu-item > a{
  display: block;
  padding: 12px 0;
  font-size:16px;
  color: #000000;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;

}
.header .menu > .menu-item > a .plus{
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left:5px;
  pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
  content:'';
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top:50%;
  background-color: #000000;
  height: 2px;
  width: 100%;
  transform: translate(-50%,-50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
  background-color: #D1C52E;
}
.header .menu > .menu-item > a .plus:after{
  transform: translate(-50%,-50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
  color: #D1C52E;
}
.header .menu > .menu-item > .sub-menu{
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 220px;
  position: absolute;
  left:0;
  top:100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #D1C52E;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity:0;
  visibility: hidden;

}
@media(min-width: 900px){

  .header .menu > .menu-item-has-children:hover > .sub-menu{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);
  }

}

.header .menu > .menu-item > .sub-menu > .menu-item{
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
  display: block;
  padding: 10px 20px;
  font-size:16px;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  text-transform: capitalize;
  text-decoration: none;
}
.header .open-nav-menu{
  height: 160px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span{
  display: block;
  height: 5px;
  width: 33px;
  background-color: #000000;
  position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
  content: '';
  position: absolute;
  left:0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}
.header .open-nav-menu span:before{
  top:-7px;
}
.header .open-nav-menu span:after{
  top:7px;
}
.header .close-nav-menu{
  height: 40px;
  width: 40px;
  object-fit: fill;
  margin:0 0 15px 5px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color:#fff;
}
.header .close-nav-menu img{
  width: 16px;
}
.header .menu-overlay{
  position: fixed;
  z-index: 999;
  background-color: rgba(0,0,0,0.5);
  left:0;
  top:0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity:0;
  transition: all 0.3s ease;
}

/*home section*/
.home-section{
  width: 100%;
  display: block;
  min-height: 100vh;
  background-image: url('../img/home.jpg');
  background-position: center top;
  background-size: cover;
}

/* responsive */
@media(max-width: 1000px){
  .header .menu-overlay.active{
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu{
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top:0;
    overflow-y: auto;
    background-color: #222222;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }

  .header .nav-menu.open{
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item{
    display: block;
    margin:0;
  }
  .header .menu > .menu-item-has-children > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a{
    font-size: 30px;
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  .header .menu > .menu-item:first-child > a{
    border-top: 1px solid #333333;
  }
  .header .menu > .menu-item > a .plus:before,
  .header .menu > .menu-item > a .plus:after{
    background-color: #ffffff;
  }
  .header .menu > .menu-item-has-children.active > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu{
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border:none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top:auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a{
    padding: 12px 45px;
    font-size: 30px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
  }
  .header .close-nav-menu,
  .header .open-nav-menu{
    display: flex;
    z-index: 1000; /* Ensure it's above other elements */
    cursor: pointer; 
  }
	
	.photo-grid{
		max-width:40%;
	}

  .header .nav-menu ul.menu {
  padding-left: 0;   /* Remove left padding */
  margin-left: 0;    /* Remove left margin */
  list-style: none;  /* Optional: remove bullets */
}

.header .nav-menu ul.menu > li {
  border-left: none; /* Remove any left border if present */
  padding-left: 0;   /* Remove padding on menu items */
}
}


.footer{
  background-color: #24262b;
  padding: 5px 0;
}
.footer-col{
  width: 25%;
  padding: 0 15px;
}
.footer-col h4{
  font-size: 16px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #D1C52E;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  color: #F7B300;
  background-color: #24262b;
}



.footer-container{
  max-width: 100%;
  margin:auto;
}

.the-company{
  margin-top: 50px;
  font-size: 40px;
  font-style: oblique;
  font-weight: bold;
  left:10px;
  text-align: center;

}

.banner{
  position:relative;
  width:100%;
  min-height:100vh;
}

.banner .imgBx{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height:100%;
}

.banner .imgBx img{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height:100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.5s;
  background-position: center;
}

.banner .imgBx img.active{
  opacity:1;
}


.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(-50%);
  z-index: 10;
}

.controls li {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transform: translateY(-50%);
}

.controls li:first-child {
  left: 0;
  z-index: 20; /* ensure it's above other elements */
}

.controls li:last-child {
  right: 0;
  z-index: 20;
}

.controls li:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-left: 3px solid #111;
  border-bottom: 3px solid #111;
}

.controls li:first-child:before {
  transform: rotate(45deg); /* left arrow */
}

.controls li:last-child:before {
  transform: rotate(225deg); /* right arrow */
}

.controls li:hover {
  background: #ffeb3b;
}



.contentBx{
  position: absolute;
  bottom:100px;
  max-width: 700px;
  overflow: hidden;
}

.contentBx div{
  display:none;
}

.contentBx div.active{
  display:block;
  padding:30px;
  padding-left: 100px;
  background: rgba(0,0,0,0.5);
}

.contentBx div h1{
  color:#fff;
  font-size: 2em;
}

.contentBx div p{
  color:#fff;
  font-size: 1.1em;
}

.contentBx div a{
  color:#111;
  font-size: 1.1em;
  display:inline-block;;
  padding:10px 30px;
  background: #fff;
  margin-top: 10px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}


@media screen and (max-width: 1000px){

  .header .menu > .menu-item > a{
    font-size:16px;
  }

  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    font-size:16px;
  }
  .contentBx div.active {
    padding: 20px 20px 20px 10px;
  }

  .contentBx div h1{
    text-align: left;
    font-size:22px;
  }

  .controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width:49px;
  }

  .controls li{
    width: 50px;
    height: 60px;
  }

  .wrapper{
    width:100%;
  }

  .banner {
    position: relative;
    width: 100%;
    min-height:85vh;
  }

  .image-section{
    width:100%;
    margin-top:0px;
    text-align: center;
    float:none;
  }

  .image-section img{
    width:80%;
    haight:auto;
  }

  .content{
    width:100%;
    margin:auto;
    text-align: justify;
    margin-bottom:50px;

  }

  .content h1{
    float:none;
    text-align: center;
    font-size: 32px;
    letter-spacing: 1px;
    margin-top: 30px;
  }

  .row{
    width: 100%;
    padding: 50px 30px 60px 60px;
  }

  .vision-p{
    margin-top:20px;
  }
  .the-company{
    font-size: 32px;
    text-align: center;
  }

 .container{
   border-radius:25px;
   max-width:340px;
   padding:10px;
 }

  .core-works-container {
    margin: auto;
    padding: 30px;
    text-align: center;
  }

  .inner-photo-grid img{
    width: 180px;
    height: 150px;
  }

  .photo-grid-header {
    font-size:26px;
    margin-bottom:20px;
  }

  .contact-logo-container{
    text-align:center;
  }

  .contact-logo{
    width:200px;
    height:45px;
  }

  .contact-container{
    width:87%;
    margin:50px 24px 40px;
  }

  .contact-left{
    width: 120%;
    margin: 10px 0px 10px -30px;
  }

  .contact-left h3{
    font-size: 23px;
    text-align: center;
  }

  .input-group label {
    margin: auto auto 10px;
    font-size: 16px;
  }

  .contact-left textarea{
    text-align: center;

  }

  .contact-button{
    text-align: center;
    border-radius: 25px;
  }


  .contact-right{

    width:100%;
    padding:20px;
  }
  .contact-container h1 {
    font-size:28px;
    text-align:center;
    font-weight: bold;
  }

  .contact-right h2{
    text-align:center;
    font-weight: bold;
    font-size:23px;
  }

  .contact-right h3{
    text-align:center;

    font-size:18px;
  }
  .contact-right table{
    margin:0px 20px 0px 0px;
  }

  .contact-box{
    flex-direction: column;
  }


  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
.core-works-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  text-align: center;
}

.service-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-text {
  flex: 1;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .service-item, .service-item.reverse {
    flex-direction: column;
    text-align: center;
  }
  .service-text {
    margin-top: 20px;
  }
  
}




}
/*end of media*/

