/* ------------------------------------BASE VALUES----------------------------------- */

* {
    box-sizing: border box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --txt-cl: #ffffff;
    --bg-cl: #1a1a1a;
    --prime-cl: #ffc340;
    --pro-cl: #ff0095;
    --accent-cl: #ffa600;
}

 
body {
    background:var(--bg-cl);
    font-family: Arial, sans-serif;
    line-height: 1;
    overflow-x: hidden;
}
 
a {
    text-decoration: none;
    color: var(--txt-cl)
}
 
ul {
    list-style: none;
}
 
img {
    max-width: 100%;
}


/**************************************************************************************/

/* --------------------------------------TEXT---------------------------------------- */

h1 {
    font-size: 80px;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 40px;
    letter-spacing: 0.5px;
}

h3 {
    font-size: 20px;
    letter-spacing: 0.5px;
}
 
h4 {
    font-size: 15px;
    letter-spacing: 0.5px;
}

p {
    font-size: 12px;
    letter-spacing: 0.5px;
}
 
/**************************************************************************************/

/* -------------------------------------UTILITY-------------------------------------- */

.container-lg {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}
 
.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 30px 30px;
}

/**************************************************************************************/
 
/* -------------------------------------Navbar---------------------------------------- */

Nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--bg-cl);
    padding: 10px 10px;
    transition: 0.3s ease-in-out;
}

Nav:hover {
    background-color: transparent;
}

Nav .container-lg {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

Nav .container-lg .navlogo {
    max-width: 40px;
}

.Navlinks-lg ul {
    display: flex;
}

ul li a {
    color: var(--txt-cl);
    padding: 5px 10px;
    transition: 0.6s ease-in-out;
    font-weight: 300;
}

ul li a:hover {
    color: var(--prime-cl);
    padding: 5px 10px;
    cursor: pointer;
}

ul li p {
    color: var(--base-cl);
    padding: 0px 10px;
    transition: 0.6s ease-in-out;
    font-weight: 300;
    font-size: 100%;
    cursor: pointer;
}

ul li p:hover {
    color: var(--primary-cl);
    padding: 5px 10px;
}

.hamburgr-buttn {
    background-color: transparent;
    padding: 5px 5px;
    border: 4px solid var(--txt-cl);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}

.hamburgr-line {
    width: 30px;
    height: 4px;
    background-color: var(--txt-cl);
    margin: 6px 3px;
    border-radius: 2px;
}

.Navlinks-sm {
    position: fixed;
    top: 0;
    right: -80%;
    width: 60%;
    height: 100%;
    background-color: var(--bg-cl);
    z-index: 100;
    box-shadow: #383838 0px 0px 15px;
    padding-left: 30px;
    padding-top: 50%;
    transition: 0.5s ease-in-out;
}

.Navlinks-sm-open{
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--bg-cl);
    z-index: 100;
    box-shadow: #383838 0px 0px 15px;
    padding-left: 30px;
    padding-top: 50%;
}

.Navlinks-sm ul li {
    font-size: 40px;
    padding: 5px 0px;
}

ul .Nav-btn {
    background-color: var(--prime-cl);
    margin-left: 10px;
    border: 2px solid var(--prime-cl);
    border-radius: 20px;
    transition: 0.5s ease-in-out;
    color: var(--bg-cl);
}

ul .Nav-btn:hover {
    background-color: var(--bg-cl);
    margin-left: 10px;
    border: 2px solid var(--prime-cl);
    border-radius: 12px;
}

/**************************************************************************************/
/*  =========================================================================================== */

/*  =========================================   HOME PAGE    =======================================    */

/*Home Hero Section */

.Hero-section {
    background-image: url(Assets/Home/Hero-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset -0px -500px 500px #1a1a1a;
}

.Hero-section .container-lg {
    display: flex;
    align-items: center;
    height: 95vh;
}

.Hero-section .container-lg .Hero-info {
    padding: 0px 90px 0px 0px;
    margin: 0px;
}

.Hero-section .container-lg .Hero-info .heroh1 {
    padding: 20px 0px;
    line-height: 120px;
    text-shadow: 5px 10px 7px #220f1598;
}

.Hero-section .container-lg .Hero-info .heroh1 .h1-mn {
    font-weight: 900;
    font-size: 150px;
    color: var(--prime-cl);
}

.Hero-section .container-lg .Hero-info .heroh1 .h1-sp {
    font-weight: 900;
    font-size: 150px;
    color: var(--txt-cl);    
}

.Hero-section .container-lg .Hero-info p {
    font-weight: 100;
    line-height: 15px;
    padding: 10px;
    color: var(--txt-cl);    
}

.Hero-section .container-lg .Hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--bg-cl);
}

.Hero-section .container-lg .Hero-btns a button {
    background-color: var(--prime-cl);
    border: 2px solid var(--prime-cl);
    border-radius: 10px;
    padding: 10px 90px;
    margin: 15px 0px;
    cursor: pointer;
    box-shadow: 5px 10px 7px #220f1598;
    transition: 0.6s ease;
}

.Hero-section .container-lg .Hero-btns a button:hover {
    background-color: transparent;
    border: 2px solid  var(--prime-cl);
    color: var(--accent-cl);
}

/**************************************************************************************/

 /* About Section */

 .About-section .container-sm {
    display: flex;
    flex-direction: column;
    align-items: center;
 }

.About-section .container-sm .About-info {
    text-align: center;
    padding: 30px 30px;
}

.About-section .container-sm .About-info h2 {
    font-size: 80px;
    color: var(--prime-cl);
}

.About-section .container-sm .About-info p {
    color: var(--txt-cl);
    line-height: 15px;
    padding: 10px;  
}

#modalTrigger {
    border: 1px solid #00e1ff07;
    border-radius: 15px;
    cursor: pointer;
    width: 80vh;
    transition: 0.6s ease-in-out;
}

#modalTrigger:hover {
    border: 1px solid #00e1ff54;
    border-radius: 15px;
    cursor: pointer;
    width: 100vh;
}

.about-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0 , 0, 0.9);
    transition: opacity 0.5s ease-in-out;
}

.close {
    color: var(--txt-cl);
    position: absolute;
    top: 6%;
    right: 6%;
    font-size: 30px;
    cursor: pointer;
}

iframe {
    width: 60%;
    height: 60%;
    max-width: 800px;
    max-height: 450px;
    margin: auto;
    display: block;
    transform: translatey(30%);
}

.About-section .container-sm a button {
    background-color: var(--prime-cl);
    border: 2px solid var(--prime-cl);
    border-radius: 10px;
    padding: 10px 100px;
    margin: 15px 0px;
    cursor: pointer;
    box-shadow: 5px 10px 7px #220f1598;
    transition: 0.6s ease-in-out;
    color: var(--bg-cl) ;
}

.About-section .container-sm a button:hover {
    background-color: transparent;
    border: 2px solid var(--accent-cl);
    padding: 10px 150px;
    color: var(--accent-cl) ;

}

/**************************************************************************************/

 /* Services Section */

.Services-section .container-lg {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Services-section .container-lg .Services-info {
    text-align: center;
}

.Services-section .container-lg .Services-info h1 {
    font-size: 90px;
    color: var(--prime-cl);
}

.Services-section .container-lg .Services-info h4 {
    color: var(--txt-cl);
    line-height: 15px;
}

.Services-section .container-lg .Services-info p {
    color: var(--txt-cl);
    margin: 20px 200px;
    line-height: 15px;
}

.Services-section .container-lg .Service-menu{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 30%;
    gap: 20px;
    padding: 30px 0px 30px 0px;
    overflow-x: auto;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    scrollbar-width: thin;
    scrollbar-color: var(--txt-cl) transparent;
    width: 100%;
    box-sizing: border-box;
    margin: 50px 0px;
}

.Services-section .container-lg .servi {
    display: flex;
    flex-direction: column;
    height: 450px;
    justify-content: end;
    padding: 20px 20px 40px 20px;
    border: 1px solid #00e1ff25;
    border-radius: 30px;
    box-shadow: inset -0px -400px 100px #1a1a1a;
    transition: 0.6s ease;
    cursor: pointer;
}

.Services-section .container-lg .servi:hover {
    height: 490px;
    border: 1px solid #00e1ffad;
    border-radius: 20px;
    box-shadow: inset -0px -200px 100px #1a1a1a;
}

#service1 {
    background-image: url(Assets/Home/a.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#service2 {
    background-image: url(Assets/Home/b.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#service3 {
    background-image: url(Assets/Home/c.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#service4 {
    background-image: url(Assets/Home/d.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#service5 {
    background-image: url(Assets/Home/e.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#service6 {
    background-image: url(Assets/Home/f.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Services-section .container-lg .servi h3 {
    font-size: 30px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--accent-cl);
    margin: 10px 0px;
}

.Services-section .container-lg .servi p {
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    color: var(--txt-cl);
    padding: 0px 0px 0px 10px;
    border-left: 2px solid var(--accent-cl);
}

/**************************************************************************************/
 
/* Map Section */

.Map-section .container-lg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
}

.Map-section .container-lg .map-discrp {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 100px 200px;
}

.Map-section .container-lg .map-discrp h2 {
    font-size: 80px;
    line-height: 65px;
    color: var(--prime-cl);
}

.Map-section .container-lg .map-discrp p {
    font-size: 20px;
    font-weight: 100;
    color: var(--txt-cl);
    padding: 0px 50px;
    border-left: 2px solid var(--accent-cl);
    border-top: 0px solid var(--accent-cl);
    margin: 0px 0px 0px 90px;
}

.Map-section .container-lg iframe {
    box-shadow: inset 0px 0px 50px 200px #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    width: 150vh;
    height: 50vh;
    transition: 0.3s ease;
}

.Map-section .container-lg iframe:hover {
    box-shadow: inset 0px 0px 0px 0px #1a1a1a;
    border: 1px solid var(--prime-cl);
    border-radius: 30px;
    width: 130vh;
    height: 50vh;
}

/**************************************************************************************/
/*  =========================================================================================== */

/*  =========================================   ABOUT PAGE    =======================================    */

/* About Page Hero Section*/

.Abt-Hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('Assets/About/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    margin: 0;
    box-shadow: inset -0px -300px 100px #1a1a1a;
}

.Abt-Hero-section .container-lg {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.Abt-Hero-section .container-lg .Hero-info {
    display : flex;
    flex-direction: column;
    justify-content: center;
}

.Abt-Hero-section .container-lg .Hero-info h1 {
    align-self: center;
    color: var(--accent-cl);
    font-size: 200PX;
    font-weight: bolder;
    line-height: 150px;
    text-shadow: #161513 5px 6px 4px;
}

.Abt-Hero-section .container-lg .Hero-info p {
    color: var(--base-cl);
    font-size: 20px;
    font-weight: 600;
    padding: 20px 200px;
    text-shadow: #020202 5px 4px 4px;
}


.Abt-Hero-section .container-lg .Hero-info button {
    background-color: var(--prime-cl);
    color: var(--bg-cl);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 40px;
    margin: 20px;
    cursor: pointer;
    border: 2px solid var(--prime-cl);
    border-radius: 5px;
    transition: 0.4s ease-in-out;
    box-shadow: #292929 5px 4px 10px;
}

.Abt-Hero-section .container-lg .Hero-info .Hero-btn {
    background-color: var(--txt-cl);
    border: 2px solid var(--txt-cl);
    margin-left: 0;
}

.Abt-Hero-section .container-lg .Hero-info button:hover {
    background-color: var(--base-cl);
    border-radius: 10px;
    color: var(--prime-cl);
    box-shadow: #292929 0px 0px 0px;
}

.Abt-Hero-section .container-lg .Hero-info .Hero-btn:hover {
    color: var(--secondary-cl);
}

/**************************************************************************************/

/*About Page About Section */

.abt-About-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 50px;
}

.abt-About-section .container-sm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider {
    flex: 0 0 60%;
    overflow: hidden;
}

.slide-container {
    display: flex;
    justify-content: center;
    background-color: aquamarine;
    animation: slideShow 4s infinite;
}

.slides {
    display: none;
    width: 100%;
    height: auto;
    text-align: center;
}

@keyframes slideShow {
    0% { slide-index: 1 }
    25% { slide-index: 2 }
    50% { slide-index: 3 }
    75% { slide-index: 4 }
    100% { slide-index: 1 }
}


a:hover {
    opacity: 0.8;
}

/* CSS for left and right arrows */
.prev, .next {
    background-color: rgba(110, 110, 110, 0.192);
    cursor: pointer;
    position: absolute;
    top: 90%;
    width: auto;
    padding: 70px 16px;
    color:var(--accent-cl);
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 50px;
    user-select: none;
    transition: 0.7s ease;
}

.prev:hover{
    background-color: rgb(110, 110, 110);
    color: rgb(255, 255, 255);
}

.next:hover{
    background-color: rgb(110, 110, 110);
    color: rgb(255, 255, 255);
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 20px 2px;
    background-color: var(--accent-cl);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s ease;
}

.dot:hover {
    background-color: #717171;
}

.Abt-Hero-section .Hero-btns {
    display: flex;
    flex-direction: row;
    align-self: center;  
}

.abt-About-section .container-sm .About-info {
margin: 50px 0px;
}

.abt-About-section .container-sm .About-info  embed{
    height: 95vh;
    width: 95vh;
    -ms-zoom: inherit;
}

/**************************************************************************************/
/*  =========================================================================================== */

/*  =========================================   CONTACT PAGE    =======================================    */

/* Contacts Page Hero Section */

.Ctc-Hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('Assets/Contacts/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 30vh;
    margin: 0;
}

.Ctc-Hero-section .container-lg {
    display: flex;
}

.Ctc-Hero-section .container-lg .Hero-info {
    line-height: unset;
    display : flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 10%;
    color: var(--bg-cl);
    font-weight: 900;
}

/**************************************************************************************/

/*Contacts Page Contacts Section*/

.Ctc-section .container-sm .ctc-form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; 
}

.Ctc-section .container-sm .ctc-form .form-ctcdtls input {
    background-color: #d6d6d6;
    border: 1px solid #5a5a5a;
    border-radius: 20px;
    padding: 5px 10px;
    margin: 10px 0px;
    width: 300px;
}

.Ctc-section .container-sm .ctc-form .form-ctcdtls input:hover {
    background-color: #ffffff;
    border: 1px solid var(--prime-cl);
}

.Ctc-section .container-sm .ctc-form .msg-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.Ctc-section .container-sm .ctc-form .msg-btn textarea {
    background-color: #d6d6d6;
    border: 1px solid #5a5a5a;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 10px 0px;
    width: 300px;
    height: 70px;
}

.Ctc-section .container-sm .ctc-form .msg-btn textarea:hover {
    background-color: #ffffff;
    border: 1px solid var(--prime-cl);
}

.Ctc-section .container-sm .ctc-form .msg-btn button {
    background-color: var(--prime-cl);
    padding: 7px 100px;
    cursor: pointer;
    border: 1px solid var(--prime-cl);
    border-radius: 6px;
    color: var(--txt-cl);
    font-weight: 600;
    transition: 0.5s ease;
    margin: 0;
}

.Ctc-section .container-sm .ctc-form .msg-btn button:hover {
    background-color: var(--bg-cl);
    padding: 7px 110px;
    border: 1px solid var(--accent-cl);
    color: var(--accent-cl);
}

.Ctc-section .container-sm .other-ctc {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Ctc-section .container-sm .other-ctc .custom-cts {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0px;
}

.Ctc-section .container-sm .other-ctc .custom-cts .cts-type {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 25px;
    margin:20px 50px;
    border: 1px solid #5a5a5a;
    border-radius: 20px;
}

.Ctc-section .container-sm .other-ctc .custom-cts .cts-type button {
    background-color: var(--prime-cl);
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid var(--prime-cl);
    margin: 20px 20px;
    padding: 10px 20px;
    color: var(--bg-cl);
    transition: 0.8s ease;
}

.Ctc-section .container-sm .other-ctc .custom-cts .cts-type button:hover {
    background-color: var(--bg-cl);
    border: 1px solid var(--accent-cl);
    color: var(--accent-cl);
}

.Ctc-section .container-sm .other-ctc .custom-cts .cts-type h4 {
    color: var(--txt-cl);
    font-weight: 300;
}

.Ctc-section .container-sm .other-ctc .custom-cts .cts-type button i {
    margin: 0px 10px;
}


.Ctc-section .container-sm .other-ctc .social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.Ctc-section .container-sm .other-ctc .social-media a {
    padding: 7px 50px;
    margin: 5px 10px;
    border-radius: 20px;
}

#facebook {
    background-color: #3881ff;
}

#linkdin {
    background-color: #74C0FC;
}

#instagram {
    background-color: #e8afff;
}

/**************************************************************************************/

/*Contact Page Location Section */

.Location-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    margin: 0;

}

.Location-section .container-lg {
    justify-content: center;
    align-items: center;
}

.Location-section .container-lg iframe {
    box-shadow: inset 0px 0px 50px 100px #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    width: 150vh;
    height: 50vh;
    transition: 0.3s ease;
}

.Location-section .container-lg iframe:hover {
    box-shadow: inset 0px 0px 0px 0px #1a1a1a;
    border: 1px solid var(--prime-cl);
    border-radius: 30px;
    width: 130vh;
    height: 50vh;
}

/**************************************************************************************/
/*  =========================================================================================== */

/*  =========================================   SERVICES PAGE    =======================================    */

/*Services Page Hero Section */

.Svc-Hero-section {
    background-image: url(Assets/Services/hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset -0px -500px 500px #1a1a1a;
}

.Svc-Hero-section .container-lg {
    display: flex;
    align-items: center;
    height: 95vh;
}

.Svc-Hero-section .container-lg .Hero-info {
    padding: 0px 90px 0px 0px;
    margin: 0px;
}

.Svc-Hero-section .container-lg .Hero-info .heroh1 {
    padding: 20px 0px;
    line-height: 120px;
    text-shadow: 5px 10px 7px #220f1598;
}

.Svc-Hero-section .container-lg .Hero-info .heroh1 .h1-mn {
    font-weight: 900;
    font-size: 150px;
    color: var(--prime-cl);
}

.Svc-Hero-section .container-lg .Hero-info .heroh1 .h1-sp {
    font-weight: 900;
    font-size: 150px;
    color: var(--txt-cl);    
}

.Svc-Hero-section .container-lg .Hero-info p {
    font-weight: 100;
    line-height: 15px;
    padding: 10px;
    color: var(--prime-cl);    
}

/**************************************************************************************/

/*Services Page Services Section */

.Svc-Services-section .container-lg {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Svc-Services-section .container-lg .Services-info {
    text-align: center;
}

.Svc-Services-section .container-lg .Services-info h1 {
    font-size: 90px;
    color: var(--prime-cl);
}

.Svc-Services-section .container-lg .Services-info h4 {
    color: var(--txt-cl);
    line-height: 15px;
}

.Svc-Services-section .container-lg .Services-info p {
    color: var(--txt-cl);
    margin: 20px 200px;
    line-height: 15px;
}

.Svc-Services-section .container-lg .Service-menu{
    display: flex;
    flex-direction: column;
    padding: 30px 0px 30px 0px;
    width: 100%;
    box-sizing: border-box;
    margin: 50px 0px;
}

.Svc-Services-section .container-lg .servi {
    display: flex;
    flex-direction: column;
    height: 150px;
    margin: 10px 0px;
    justify-content: end;
    padding: 20px 20px 40px 20px;
    border: 1px solid #00e1ff25;
    border-radius: 30px;
    box-shadow: inset -0px -0px 100px #1a1a1a;
    transition: 0.6s ease;
    cursor: pointer;
}

.Svc-Services-section .container-lg .Service-menu .servi:hover {
    height: 490px;
    border: 1px solid #00e1ffad;
    border-radius: 20px;
    box-shadow: inset -0px -200px 100px #1a1a1a;
}

.Svc-Services-section .container-lg .Service-menu .service1 {
    background-image: url(Assets/Services/Civil/hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Svc-Services-section .container-lg .Service-menu .service2 {
    background-image: url(Assets/Services/Mech/hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Svc-Services-section .container-lg .Service-menu .service3 {
    background-image: url(Assets/Services/Electric/hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Svc-Services-section .container-lg .Service-menu .service4 {
    background-image: url(Assets/Services/Labs/hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Svc-Services-section .container-lg .servi h3 {
    font-size: 30px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--accent-cl);
    margin: 10px 0px;
}

.Svc-Services-section .container-lg .servi p {
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    color: var(--txt-cl);
    padding: 0px 0px 0px 10px;
    border-left: 2px solid var(--accent-cl);
}

/**************************************************************************************/
/*  =========================================================================================== */

/*  =========================================    CIVIL PAGE    =======================================    */

/*Services Page Hero Section */

.Cvl-Hero-section {
    background-image: url(Assets/Services/Civil/hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset -0px -500px 500px #1a1a1a;
}

.Cvl-Hero-section .container-lg {
    display: flex;
    align-items: center;
    height: 50vh;
}

.Cvl-Hero-section .container-lg .Hero-info {
    padding: 0px 90px 0px 0px;
    margin: 0px;
}

.Cvl-Hero-section .container-lg .Hero-info .heroh1 {
    padding: 20px 0px;
    line-height: 80px;
    text-shadow: 5px 10px 7px #220f1598;
}

.Cvl-Hero-section .container-lg .Hero-info .heroh1 .h1-mn {
    font-weight: 900;
    font-size: 100px;
    color: var(--prime-cl);
}

.Cvl-Hero-section .container-lg .Hero-info .heroh1 .h1-sp {
    font-weight: 900;
    font-size: 100px;
    color: var(--txt-cl);    
}

.Cvl-Hero-section .container-lg .Hero-info p {
    font-size: 15px;
    font-weight: 100;
    line-height: 15px;
    padding: 10px;
    color: var(--prime-cl);    
}

/**************************************************************************************/

/*Services Page Services Section */

.Cvl-Services-section .container-lg {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Cvl-Services-section .container-lg .Services-info {
    text-align: center;
}

.Cvl-Services-section .container-lg .Services-info h1 {
    font-size: 90px;
    color: var(--prime-cl);
}

.Cvl-Services-section .container-lg .Services-info h4 {
    color: var(--txt-cl);
    line-height: 15px;
}

.Cvl-Services-section .container-lg .Services-info p {
    color: var(--txt-cl);
    margin: 20px 200px;
    line-height: 15px;
}

.Cvl-Services-section .container-lg .Service-menu{
    display: flex;
    flex-direction: column;
    padding: 30px 0px 30px 0px;
    width: 100%;
    box-sizing: border-box;
    margin: 50px 0px;
}

.Cvl-Services-section .container-lg .servi {
    background: radial-gradient(circle at 100% 100%, #1a1a1a 0, #1a1a1a 5px, transparent 5px) 0% 0%/8px 8px no-repeat,
    radial-gradient(circle at 0 100%, #1a1a1a 0, #1a1a1a 5px, transparent 5px) 100% 0%/8px 8px no-repeat,
    radial-gradient(circle at 100% 0, #1a1a1a 0, #1a1a1a 5px, transparent 5px) 0% 100%/8px 8px no-repeat,
    radial-gradient(circle at 0 0, #1a1a1a 0, #1a1a1a 5px, transparent 5px) 100% 100%/8px 8px no-repeat,
    linear-gradient(#1a1a1a, #1a1a1a) 50% 50%/calc(100% - 6px) calc(100% - 16px) no-repeat,
    linear-gradient(#1a1a1a, #1a1a1a) 50% 50%/calc(100% - 16px) calc(100% - 6px) no-repeat,
    #ffffff;
    border-radius: 15px;
    padding: 7px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 125px;
    margin: 10px 0px;
    justify-content: end;
    padding: 20px 20px 40px 20px;
    box-shadow: inset -0px -0px 100px #1a1a1a;
    transition: 0.6s ease;
    cursor: pointer;
}

.Cvl-Services-section .container-lg .Service-menu .servi:hover {
    background: radial-gradient(circle at 100% 100%, #1a1a1a 0, #1a1a1a 5px, transparent 5px) 0% 0%/8px 8px no-repeat,
    radial-gradient(circle at 0 100%, #1a1a1a 0, #1a1a1a 5px, transparent 5px) 100% 0%/8px 8px no-repeat,
    radial-gradient(circle at 100% 0, #1a1a1a 0, #1a1a1a 5px, transparent 5px) 0% 100%/8px 8px no-repeat,
    radial-gradient(circle at 0 0, #1a1a1a 0, #1a1a1a 5px, transparent 5px) 100% 100%/8px 8px no-repeat,
    linear-gradient(#1a1a1a, #1a1a1a) 50% 50%/calc(100% - 6px) calc(100% - 16px) no-repeat,
    linear-gradient(#1a1a1a, #1a1a1a) 50% 50%/calc(100% - 16px) calc(100% - 6px) no-repeat,
    linear-gradient(115deg, #ffab00 0%, #9e47e0 33%, #00ffa6 67%, #ffca00 100%);
    height: 700px;
    box-shadow: inset -0px -200px 100px #1a1a1a;
}

.slider2 {

    overflow: hidden;
    border-radius: 20px;
}

.slide-container2 {
    display: flex;
    justify-content: center;
    background-color:transparent;
    animation: slideShow 4s infinite;
}

.slides2 {
    display: none;
    height: auto;
    text-align: center;
    padding: 250px 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#constrSlidei { 
    background-image: url('Assets/Services/Civil/constrSlidei.webp');
}

#constrSlideii { 
    background-image: url('Assets/Services/Civil/constrSlideii.webp');
}

#constrSlideiii { 
    background-image: url('Assets/Services/Civil/constrSlideiii.webp');
}

#constrSlideiv { 
    background-image: url('Assets/Services/Civil/constrSlidei.webp');
}


#bldmatSlidei { 
    background-image: url('Assets/Services/Civil/bldmatSlidei.webp');
}

#bldmatSlideii { 
    background-image: url('Assets/Services/Civil/bldmatSlideii.webp');
}

#bldmatSlideiii { 
    background-image: url('Assets/Services/Civil/bldmatSlideiii.webp');
}

#bldmatSlideiv { 
    background-image: url('Assets/Services/Civil/bminstSlideiv.webp');
}


#bminstSlidei { 
    background-image: url('Assets/Services/Civil/bminstSlidei.webp');
}

#bminstSlideii { 
    background-image: url('Assets/Services/Civil/bminstSlideii.webp');
}

#bminstSlideiii { 
    background-image: url('Assets/Services/Civil/bminstSlideiii.webp');
}

#bminstSlideiv { 
    background-image: url('Assets/Services/Civil/bminstSlideiv.webp');
}


#bdmainSlidei { 
    background-image: url('Assets/Services/Civil/bdmainSlidei.webp');
}

#bdmainSlideii { 
    background-image: url('Assets/Services/Civil/bdmainSlideii.webp');
}

#bdmainSlideiii { 
    background-image: url('Assets/Services/Civil/bdmainSlideiii.webp');
}

#bdmainSlideiv { 
    background-image: url('Assets/Services/Civil/bdmainSlideiv.webp');
}


#plmbSlidei { 
    background-image: url('Assets/Services/Civil/plmbSlidei.webp');
}

#plmbSlideii { 
    background-image: url('Assets/Services/Civil/plmbSlideii.webp');
}

#plmbSlideiii { 
    background-image: url('Assets/Services/Civil/plmbSlideiii.webp');
}

#plmbSlideiv { 
    background-image: url('Assets/Services/Civil/plmbSlideiv.webp');
}


.Cvl-Services-section .container-lg .Service-menu .service1 {
    background-image: url(Assets/Home/a.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Cvl-Services-section .container-lg .Service-menu .service2 {
    background-image: url(Assets/Home/b.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Cvl-Services-section .container-lg .Service-menu .service3 {
    background-image: url(Assets/Home/c.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Cvl-Services-section .container-lg .Service-menu .service4 {
    background-image: url(Assets/Home/d.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Cvl-Services-section .container-lg .servi h3 {
    font-size: 30px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--accent-cl);
    margin: 10px 0px;
}

.Cvl-Services-section .container-lg .servi p {
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    color: var(--txt-cl);
    padding: 0px 0px 0px 10px;
    border-left: 2px solid var(--accent-cl);
}

@keyframes slideShow {
    0% { slide-index: 1 }
    25% { slide-index: 2 }
    50% { slide-index: 3 }
    75% { slide-index: 4 }
    100% { slide-index: 1 }
}

.skip:hover {
    opacity: 0.8;
}

.prod-obj-cont2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    margin-top:-80px ;
}

/* CSS for left and right arrows */
.prev2, .next2 {
    background-color: var(--accent-cl);
    cursor: pointer;
    width: auto;
    padding: 15px 20px;
    margin: 0px 200px;
    color: var(--bg-cl);
    font-weight: bold;
    font-size: 20px;
    user-select: none;
    transition: 0.7s ease;
    border-radius: 50%;
    border: 4px solid var(--accent-cl);
}

.next2:hover {
    background-color: rgba(255, 242, 53, 0.808);

}

.prev2:hover {
    background-color: rgba(255, 242, 53, 0.808);
}

/* The dots/bullets/indicators */
.dot2 {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 3px;
    background-color: #ff5100;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s ease;
}

.active, .dot2:hover {
    background-color: #717171;
}
/*  =========================================================================================== */

/*  =========================================    MECH PAGE    =======================================    */

/*Services Page Hero Section */
#mechHero {
    background-image: url(Assets/Services/Mech/hero.webp);
}

/**************************************************************************************/

/*Services Page Services Section */
#acSlidei { 
    background-image: url('Assets/Services/Mech/acSlidei.webp');
}

#acSlideii { 
    background-image: url('Assets/Services/Mech/acSlideii.webp');
}

#acSlideiii { 
    background-image: url('Assets/Services/Mech/acSlideiii.webp');
}

#acSlideiv { 
    background-image: url('Assets/Services/Mech/acSlideiv.webp');
}


#frSlidei { 
    background-image: url('Assets/Services/Mech/frSlidei.webp');
}

#frSlideii { 
    background-image: url('Assets/Services/Mech/frSlideii.webp');
}

#frSlideiii { 
    background-image: url('Assets/Services/Mech/frSlideiii.webp');
}

#frSlideiv { 
    background-image: url('Assets/Services/Mech/frSlideiv.webp');
}


#pmpSlidei { 
    background-image: url('Assets/Services/Mech/pmpSlidei.webp');
}

#pmpSlideii { 
    background-image: url('Assets/Services/Mech/pmpSlideii.webp');
}

#pmpSlideiii { 
    background-image: url('Assets/Services/Mech/pmpSlideiii.webp');
}

#pmpSlideiv { 
    background-image: url('Assets/Services/Mech/pmpSlideiv.webp');
}


#crfSlidei { 
    background-image: url('Assets/Services/Mech/crfSlidei.webp');
}

#crfSlideii { 
    background-image: url('Assets/Services/Mech/crfSlideii.webp');
}

#crfSlideiii { 
    background-image: url('Assets/Services/Mech/crfSlideiii.webp');
}

#crfSlideiv { 
    background-image: url('Assets/Services/Mech/crfSlideiv.webp');
}

/*  =========================================================================================== */

/*  =========================================    MECH PAGE    =======================================    */

/*Services Page Hero Section */
#elecHero {
    background-image: url(Assets/Services/Electric/hero.webp);
}

/**************************************************************************************/

/*Services Page Services Section */
#eacSlidei { 
    background-image: url('Assets/Services/Electric/eacSlidei.webp');
}

#eacSlideii { 
    background-image: url('Assets/Services/Electric/eacSlideii.webp');
}

#eacSlideiii { 
    background-image: url('Assets/Services/Electric/eacSlideiii.webp');
}

#eacSlideiv { 
    background-image: url('Assets/Services/Electric/eacSlideiv.webp');
}


#gsSlidei { 
    background-image: url('Assets/Services/Electric/gsSlidei.webp');
}

#gsSlideii { 
    background-image: url('Assets/Services/Electric/gsSlideii.webp');
}

#gsSlideiii { 
    background-image: url('Assets/Services/Electric/gsSlideiii.webp');
}

#gsSlideiv { 
    background-image: url('Assets/Services/Electric/gsSlideiv.webp');
}

/*  =========================================================================================== */

/*  =========================================    MECH PAGE    =======================================    */

/*Services Page Hero Section */
#labHero {
    background-image: url(Assets/Services/Labs/hero.webp);
}

/**************************************************************************************/

/*Services Page Services Section */
#lbeSlidei { 
    background-image: url('Assets/Services/Labs/lbeSlidei.webp');
}

#lbeSlideii { 
    background-image: url('Assets/Services/Labs/lbeSlideii.webp');
}

#lbeSlideiii { 
    background-image: url('Assets/Services/Labs/lbeSlideiii.webp');
}

#lbeSlideiv { 
    background-image: url('Assets/Services/Labs/lbeSlideiv.webp');
}


#leiSlidei { 
    background-image: url('Assets/Services/Labs/leiSlidei.webp');
}

#leiSlideii { 
    background-image: url('Assets/Services/Labs/leiSlideii.webp');
}

#leiSlideiii { 
    background-image: url('Assets/Services/Labs/leiSlideiii.webp');
}

#leiSlideiv { 
    background-image: url('Assets/Services/Labs/leiSlideiv.webp');
}


/*  =========================================================================================== */

/*  =========================================    FOOTER    =======================================    */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('Assets/Home/footbg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 115vh;
    margin: 0;
    box-shadow: inset -0px 420px 500px #1a1a1a;
}

footer h2 {
    color: var(--prime-cl);
    text-transform: uppercase;
}

footer .container-lg .foot-details {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    align-self: center;
    padding: 70px 0px;
}

footer .container-lg .foot-details .company-info {
    display: flex;
    flex-direction: column;
    justify-content: center;    
    align-items: center;
}

footer .container-lg .foot-details .company-info p {
    color: var(--txt-cl);
    padding: 30px 20px;
}

footer .container-lg .foot-details .company-info img {
    width: 30vh;
}

footer .container-lg .foot-details .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1.5px solid var(--base-cl);
    border-right: 1.5px solid var(--base-cl);
}

footer .container-lg .foot-details .contact-info .social-media  {
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px 0px;
}

footer .container-lg .foot-details .contact-info .social-media a {
    display: grid;
    grid-auto-flow: row;
    gap: 10px;
    margin: 10px;
}

footer .container-lg .foot-details .contact-info .social-media a img {
    border-radius: 50%;
}

footer .container-lg .foot-details .contact-info .contact-details {
    display: flex;
    padding: 20px 0px;
}

footer .container-lg .foot-details .contact-info .contact-details a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
}

footer .container-lg .foot-details .contact-info .contact-details a i {
    padding: 0px 5px;
}

footer .container-lg .foot-details .contact-info .contact-details a h4 {
    color: var(--base-cl);
    font-weight: 300;
    padding: 0px 5px;
}

footer .container-lg .foot-details .contact-info button {
    background-color: var(--prime-cl);
    border: 1px solid var(--prime-cl);
    border-radius: 10px;
    padding: 10px 40px;
    margin: 0px 10px;
    cursor: pointer;
    transition: 0.8s ease;
    color: var(--bg-cl);
}

footer .container-lg .foot-details .contact-info button:hover {
    background-color: transparent;
    color: var(--accent-cl);
}

footer .container-lg .foot-details .contact-info button i {
margin: 0px 6px;
}

footer .container-lg .foot-details .quick-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 100px;
    padding-left: 20px;
}

footer .container-lg .foot-details .quick-links ul {
    margin: 20px 0px;
}

footer .container-lg .foot-details .quick-links ul li {
    margin: 15px 0px;
}

footer .container-lg .foot-details .search-container {
    margin: 30px 0px;
}

footer .container-lg .copyright p {
    align-items: center;
    text-align: center;
    color: var(--txt-cl);
    padding: 50px 0px;
    border-top: 1.5px solid white;

}

/**************************************************************************************/
/*  =========================================================================================== */

/*  =========================================    MEDIA QUERIES    =======================================    */

@media (min-width: 1920px) { /* X-Large devices (large desktops, more than 1920px) */
    
    /* Navbar */
    .Navlinks-lg {
        display: block;
    }

    .Navlinks-sm {
        display: none;
    }

    .hamburgr-buttn {
        display: none;
    }

    Nav .navprod-cont {
        background-color: #0082e6;
        position: fixed;
        top: -33%;
        left: 68%;
        width: 0%;
        padding: 15px 80px 15px 10px;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
    }

    Nav .navprod-cont-open {
        background-color: #0082e6;
        position: fixed;
        top: 7%;
        left: 68%;
        width: 10%;
        padding: 15px 80px 15px 10px;
        border-radius: 10px;
    }
    /*--------------*/
}

@media (min-width: 1200px) { /* Large devices (desktops, more than 1200px) */
 
    /* Navbar */
    .Navlinks-lg {
        display: block;
    }

    .Navlinks-sm {
        display: none;
    }

    .hamburgr-buttn {
        display: none;
    }

    Nav .navprod-cont {
        background-color: #0082e6;
        position: fixed;
        top: -38%;
        left: 75%;
        width: 0%;
        padding: 15px 80px 15px 10px;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
    }

    Nav .navprod-cont-open {
        background-color: #0082e6;
        position: fixed;
        top: 11%;
        left: 75%;
        width: 10%;
        padding: 15px 80px 15px 10px;
        border-radius: 10px;
    }
    /*--------------*/
}

@media (min-width: 1024px) { /* Medium devices (tablets, more than 1024px) */

    /* Navbar */
    .Navlinks-lg {
        display: block;
    }

    .Navlinks-sm {
        display: none;
    }

    .hamburgr-buttn {
        display: none;
    }

    Nav .navprod-cont {
        background-color: #0082e6;
        position: fixed;
        top: -38%;
        left: 75%;
        width: 0%;
        padding: 15px 80px 15px 10px;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
    }

    Nav .navprod-cont-open {
        background-color: #0082e6;
        position: fixed;
        top: 11%;
        left: 75%;
        width: 10%;
        padding: 15px 80px 15px 10px;
        border-radius: 10px;
    }
    /*--------------*/
}

@media (max-width: 1023.98px) { /* Small devices (landscape phones, less than 1024px) */    

    /* Navbar */
    .search-container {
        display: flex;
        margin-left: 0;
    }

    .hamburgr-buttn {
        display: block;
    }

    .Navlinks-sm-open{
        padding-top: 25%;
    }

    ul li p {
        font-size: 100%;
    }
    
    .Navlinks-lg {
        display: none;
    }

    .Navlinks-sm {
        display:block;
    }

    Nav .navprod-cont {
        display: none;
    }

    Nav .navprod-cont-open {
        display: none;
    }

    .navprod-cont-sm {
        position: fixed;
        top: 25%;
        left: 100%;
        width: 45%;
        background-color: var(--txt-cl);
        padding: 15px 80px 15px 20px;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
        font-size: 10%;
        margin: 10px 0px 50px 10px;
        transition: 0.1s ease-out;
    }

    .navprod-cont-smopen {
        position: fixed;
        top: 25%;
        left: 65%;
        width: 45%;
        background-color: #0082e6;
        padding: 15px 80px 15px 20px;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
        font-size: 10%;
        margin: 10px 0px 50px 10px;
        transition: 0.1s ease-out;
    } 
    /*--------------*/


    /* Hero Section */
    .Hero-section .container-lg .Hero-img {
        display: none;
        flex-direction: column;
    }
    
    .Hero-section .container-lg {
        flex-direction: column;
    }
    /*--------------*/


    /* Products Section */
    .Product-section .container-lg .prod-array {
        display: flex;
        overflow-x: auto;
        width: 110%;
    }

    .Product-section .container-lg .prod-array .prod-card .prod-info p {
        font-size: 11px;
        padding-left: 10px;
    }

    .Product-section .container-lg .prod-array .prod-card .prod-arrow button a {
        font-size: 10px;        
    }

    .Product-section .container-lg .prod-cta p {
        padding: 10px 30px;
    }

    .Product-section .container-lg .prod-cta button {
        padding: 10px 60px;
        margin: 10px 40px;
    }

    .Product-section .container-lg .prod-cta {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .Product-section .container-lg .prod-headline {
        display: flex;
        flex-direction: column;
    }
    /*--------------*/


    /* Clients Section */
    .Clients-section .container-lg .clients .client h2 {
        font-size: small;
    }
    /*--------------*/


    /* Footer */
    footer {
        padding: 290px 0;
    }

    footer .container-lg .foot-details {
        display: grid;
        grid-auto-flow: row;
        align-self: center;
        row-gap: 10%;
    }

    footer .container-lg .foot-details .company-info img {
        max-width: 70%;
    }

    footer .container-lg .copyright {
        margin-top: 150px;
    }
    /*--------------*/

}

@media (max-width: 980px) { /* X-Small devices (portrait phones, less than 980px) */

    /* Navbar */
    .search-container {
        display: flex;
        margin-left: 0;
    }

    .hamburgr-buttn {
        display: block;
    }

    ul li p {
        font-size: 100%;
    }
    
    .Navlinks-lg {
        display: none;
    }

    .Navlinks-sm {
        display:block;
    }

    Nav .navprod-cont {
        display: none;
    }

    Nav .navprod-cont-open {
        display: none;
    }

    .navprod-cont-sm {
        position: fixed;
        top: 100%;
        left: 39%;
        width: 34%;
        background-color: #0082e6;
        padding: 15px 80px 15px 20px;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
        font-size: 10%;
        margin: 10px 0px 50px 10px;
        transition: 0.1s ease-out;
    }

    .navprod-cont-smopen {
        position: fixed;
        top: 27%;
        left: 39%;
        width: 34%;
        background-color: #0082e6;
        padding: 15px 80px 15px 20px;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
        font-size: 10%;
        margin: 10px 0px 50px 10px;
        transition: 0.1s ease-out;
    } 
    /*--------------*/


    /* Home Hero Section */
    .Hero-section .container-lg {
        flex-direction: column;
        justify-content: center;
    }

    .Hero-section .container-lg .Hero-info .heroh1 {
        padding: 10px 0px;
        line-height: 70px;
        text-shadow: 5px 10px 7px #220f1598;
    }

    .Hero-section .container-lg .Hero-info .heroh1 .h1-mn {
        font-size: 80px;
    }
    
    .Hero-section .container-lg .Hero-info .heroh1 .h1-sp {
        font-size: 80px;
    }

    /*--------------*/


    
    /* Home About Section */

    .About-section .container-sm .About-info h2 {
        font-size: 60px;
        color: var(--prime-cl);
    }


    /*--------------*/    


    /* Home Services Section */

    .Services-section .container-lg .Services-info h1 {
        font-size: 40px;
    }

    .Services-section .container-lg .Services-info p {
        margin: 20px 20px;
    }

    .Services-section .container-lg .Service-menu{
        grid-auto-columns: 80%;
        margin: 0px 0px;
    }

    .Services-section .container-lg .servi {
        box-shadow: inset -0px -300px 100px #1a1a1a;
        transition: 0.6s ease;
    }

    /*--------------*/


    /* Home Map Section */

    .Map-section .container-lg .map-discrp {
        display: flex;
        flex-direction: column;
        padding: 100px 20px;
    }

    .Map-section .container-lg .map-discrp p {
        font-size: 12px;
        padding: 20px 10px;
        border-left: 0px solid var(--accent-cl);
        border-top: 2px solid var(--accent-cl);
        margin: 40px 0px 0px 0px;
    }

    .Map-section .container-lg iframe {
        box-shadow: inset 0px 0px 50px 20px #1a1a1a;
        width: 40vh;
        height: 50vh;
    }
    
    /*--------------*/

    /* Booking Hero Section */
    
    .Ctc-Hero-section .container-lg .Hero-info {
        line-height: 60px;
    }

    .Ctc-section .container-sm .ctc-form {
        flex-direction: column;
    }

    .Ctc-section .container-sm .other-ctc .custom-cts {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .Ctc-section .container-sm .other-ctc .custom-cts div {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 5px 25px;
        margin:60px 0px;
        border: 1px solid #5a5a5a;
        border-radius: 20px;
    }

    .Location-section .container-lg a button {
        width: 40vh;
    }
    
    .Ctc-section .container-sm .other-ctc .social-media {
        flex-direction: column;
    }

    /*--------------*/

    /* Footer */
    footer {
        padding: 160px 0;
    }

    footer .container-lg .foot-details {
        display: grid;
        grid-auto-flow: row;
        align-self: center;
        row-gap: 10%;
    }

    footer .container-lg .foot-details .company-info img {
        max-width: 100%;
    }

    footer .container-lg .copyright {
        margin-top: 150px;
    }
    /*--------------*/
    .Abt-Hero-section .container-lg .Hero-info h1 {
        font-size: 100PX;
        line-height: 80px;
    }

    .slide-container {
        max-width: 60%;
        transform: translatex(32%);
    }

    .prev, .next {
        background-color: rgba(110, 110, 110, 0.192);
        cursor: pointer;
        position: absolute;
        top: 65%;
        width: auto;
        padding: 70px 16px;
        color:var(--accent-cl);
        font-weight: bold;
        font-size: 20px;
        transition: 0.6s ease;
        border-radius: 50px;
        user-select: none;
        transition: 0.7s ease;
    }

    .Svc-Hero-section .container-lg .Hero-info .heroh1 {
        line-height: 60px;
    }
    
    .Svc-Hero-section .container-lg .Hero-info .heroh1 .h1-mn {
        font-size: 60px;
    }

    .Svc-Hero-section .container-lg .Hero-info .heroh1 .h1-sp {
        font-size: 60px;
    }

    .Cvl-Hero-section .container-lg .Hero-info .heroh1 {
        padding: 20px 0px;
        line-height: 40px;
        text-shadow: 5px 10px 7px #220f1598;
    }
    
    .Cvl-Hero-section .container-lg .Hero-info .heroh1 .h1-mn {
        font-weight: 900;
        font-size: 50px;
        color: var(--prime-cl);
    }
    
    .Cvl-Hero-section .container-lg .Hero-info .heroh1 .h1-sp {
        font-weight: 900;
        font-size: 50px;
        color: var(--txt-cl);    
    }
    
    .Cvl-Services-section .container-lg .servi {
        height: 165px;
    }
    .slides2 {
        padding: 250px 200px;
    }

    .prev2, .next2 {
        background-color: var(--accent-cl);
        cursor: pointer;
        width: auto;
        padding: 15px 20px;
        margin: 0px 100px;
        color: var(--bg-cl);
        font-weight: bold;
        font-size: 20px;
        user-select: none;
        transition: 0.7s ease;
        border-radius: 50%;
        border: 4px solid var(--accent-cl);
    }
}



/**************************************************************************************/
