@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: rgba(7, 99, 246, 0.06);
    --secondry: rgb(1, 23, 135);
    --success: rgb(18, 195, 0);
    --warning: rgb(255, 162, 59);
    --font-bold: 'Conv_Poppins-Bold';
    --font-light: 'Conv_Poppins-Light';
    --font-medium: 'Conv_Poppins-Medium';
    --font-regular: 'Conv_Poppins-Regular';
}

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Custom Css */
a {
    text-decoration: none;
    transition: transform 0.3s ease; /* Transition property */
}
a:hover{
    transform: scale(1.06);
}

/* display css space between */
.sp-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.heading {
    align-items: center;
    padding: 5vh 0;
}

.heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(1, 23, 135);
    padding-left: 3%;
}

.heading img {
    width: 15%;
}
.full-heading{
    width: 100%;
    text-align: center;
}
.full-heading h2 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    color: rgb(1, 23, 135);
}
.full-heading img{
    width: 7%;
    margin: 4vh 0;
}
.full-heading p{
    color: var(--gray);
    font-size: 18px;
    font-weight: 500;
}


h1 {
    font-size: 40px;
    font-weight: 700;
    color: rgb(1, 23, 135);
}

/* width 100% */
nav,
section,
footer,
.top-nav {
    width: 100%;
    padding: 1vh 5%;
    font-family: var(--font-family-sans-serif);
}

/* Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vh 5%;
    width: 100%;
    font-family: var(--font-family-sans-serif);
}

.logo {
    width: 15%;
}

.logo img {
    width: 100%;
}

.navbar ul,
.sidebar ul {
    display: flex;
    list-style: none;
    background-color: l;
}

.navbar ul li a,
.sidebar ul li a,
.callnofw a {
    padding: 10px 15px;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    color: var(--red);
}

.navbar ul li a:hover,
.sidebar ul li a:hover {
    background-color: var(--red);
    color: white;
}

.callfnow a {
    color: white;
    background-color: var(--red);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    width: 100%;
    /* Adjust width if needed */
    display: flex;
    flex-direction: column;
    /* Ensure vertical stacking */
    box-shadow: 0 0 10px 0 rgb(97, 96, 96);
    z-index: 2000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    max-height: 100vh;
    /*Adjust based on the content */
}

.dropdown-content li {
    width: 100%;
    /* Ensure full width for each item */
    padding: 5px 0;
}

.dropdown-content li a {
    color: #000;
    display: block;
    /* Make the anchor tag take full width */
}

.navbar ul li ul li a {
    padding: 5px 10%;
    font-size: 18px;
}

/* Smooth closing transition */
.dropdown:not(:hover) .dropdown-content {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.5s ease;
}


.callnow a {
    background-color: #dc3545;
    /* Dark red */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Initial box shadow */
    animation: pulse 1300ms infinite;
    /* Apply the animation */
}

/* Animation keyframes */
@keyframes pulse {
    0% {
        background-color: #A7300F;
        /* Darker color */
        box-shadow: 0 4px 5px #A7300F;
        /* Shadow for darker shade */
    }

    50% {
        background-color: #fa4c1b;
        /* Lighter color (slightly lighter than #dc3545) */
        box-shadow: 0 0px 20px #fa4c1b;
        /* Larger shadow on lighter */
    }

    100% {
        background-color: #A7300F;
        /* Darker color */
        box-shadow: 0 4px 5px #A7300F;
        /* Shadow for darker shade */
    }
}

/* Optional hover effect for extra interaction */
.callnow a:hover {
    background-color: #c82333;
    /* Even darker on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Hamburger styling */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 999;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: transform 0.3s ease-in-out;
}

/* Sidebar styling */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.5s ease-in-out;
    z-index: 2000;
}

.sidebar ul {
    width: 100%;
    flex-direction: column;
}

.sidebar ul li {
    width: 100%;
    padding: 10px 0;
}

.sidebar ul li a {
    width: 100%;
    display: flex;
}

/* Call Now button */
.callnow a {
    background-color: #dc3545;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Rotate Hamburger when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Show sidebar when active */
.sidebar.active {
    left: 0;
}

/* footer styling */

.footer {
    padding: 7vh 5%;
    background-color: rgba(7, 99, 246, 0.06);
    display: flex;
    flex-wrap: wrap;
}

.footer div {
    width: 25%;
}

.footer div h4 {
    font-size: 18px;
    color: rgb(1, 23, 135);
    margin-bottom: 5vh;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 15px;
}

.footer ul li a,
.footer ul li {
    color: #000;
    font-weight: 600;
    transition: all 0.2s ease;
    /* Apply transition */
}

.footer li a:hover {
    padding: 5px;
    background-color: red;
    color: white;
    transition: all 0.2s ease;
    /* Smooth hover transition */

}

.footer ul li a img {
    width: 80%;
    height: 12vh;
}

.social-links a i {
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    color: white;
    margin-right: 5%;
    margin-top: 2vh;
}

.footer-box4 li a:hover {
    padding: 0px;
    background-color: rgba(7, 99, 246, 0.06);
    color: white;
}

.calling {
    display: flex;
    justify-content: center;
}

.calling a {
    font-family: var(--font-family-sans-serif);
    background-color: red;
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 20px;
    border-radius: 20px;
    position: fixed;
    bottom: 4%;
    z-index: 3000;
}

.whatsapp a {
    position: fixed;
    bottom: 6%;
    right: 2%;
    background-color: none;
    z-index: 3000;
}

/*------------------------- Styling for home pages -------------------------------*/
.top-nav {
    background-color: red;
    padding: 2vh 5%;
    color: white;
}

.top-nav div a {
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    border: 2px solid white;
    margin: 0 5px;
}

.top-nav div a:nth-child(1):hover {
    background-color: #1877F2;
    ;
    /* Red background on hover for the 1st link */
}

.top-nav div a:nth-child(2):hover {
    background: #833ab4;
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
    ;
    /* Blue background on hover for the 2nd link */
}

.top-nav div a:nth-child(3):hover {
    background-color: #FF0000;
    /* Green background on hover for the 3rd link */
}

.top-nav div a:nth-child(4):hover {
    background-color: black;
    /* Pink background on hover for the 4th link */
}

/* Starting of banner */

.banner-box1 {
    width: 65%;
}

.banner-box2 {
    width: 35%;
}

.banner-box1-box-sec div {
    width: 25%;
    border: 1px solid rgba(7, 99, 246);
    margin-right: 3%;
    padding: 4vh 3%;
    color: rgba(7, 99, 246);
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.banner-box1-box-sec div i {
    background-color: rgb(177, 206, 252);
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
}

.banner-box1-box-sec div h3 {
    font-size: 24px;
    font-weight: 800;
    padding: 2vh 0;
}

.banner-box1-box-sec div p {
    font-weight: 600;
}

.banner-box1-box-sec2 a {
    color: white;
    margin-right: 2%;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
}

/* banner2 */
.banner2 {
    margin: 7vh 0;
}

.banner2-box1,
.banner2-box2 {
    width: 50%;
}

.banner2-box1 {
    position: relative;
}

.banner2-box1-img1 {
    width: 70%;
    margin-left: 30%;
    border-radius: 5px;
}

.banner2-box1-inner img {
    position: absolute;
    top: 70%;
    width: 50%;
    height: 300px;
    border: 15px solid white;
    border-radius: 10px;
}

.banner2-box2 {
    padding-left: 3%;
}

.banner2-box2 h3 {
    font-size: 30px;
}

.banner2-box2 p {
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    padding-top: 5vh;
}

.banner2-box2 ul {
    list-style: none;
    margin-bottom: 5vh;
}

.banner2-box2 ul li i {
    color: var(--blue);
    font-weight: 700;
    padding-top: 4vh;
    padding-right: 5%;
}

.banner2-box2 a {
    background-color: var(--blue);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
}

.banner2-box2 a:hover {
    background-color: white;
    color: var(--blue);
    border: 1px solid var(--blue);
}

/* banner3 */
.banner3 {
    margin-top: 20vh;
    background-color: lightblue;
    padding-bottom: 5vh;
}

.banner3 .heading {
    width: 50%;
}

.banner3 .heading h2 p {
    font-size: 16px;
    color: var(--dark);
}

.banner3-boxes,
.banner3-boxes2 {
    width: 48%;
    background-color: white;
    display: flex;
    padding: 3vh;
    /* align-items: center; */
    align-items: center;
    border-radius: 0 150px 150px 0;
    border-left: 5px solid red;
    margin-top: 5vh;
    cursor: pointer;
    transition: transform 0.3s ease; /* Transition property */
}
.banner3-boxes:hover,.banner3-boxes2:hover{
    transform: translateY(-15px); 
    transform: scale(1.05); /* Scale the div to 105% on hover */
}
.banner3-boxes2 {
    border-radius: 150px 0 0 150px;
    border-right: 5px solid red;
    border-left: 0;
}

.banner3-boxes img,
.banner3-boxes2 img {
    width: 50%;
    border-radius: 50%;
    border: 5px solid red;
    margin-right: 5%;
}

.banner3-boxes h3,
.banner3-boxes2 h3 {
    color: rgb(1, 23, 135);
    font-size: 25px;
}

.banner3-boxes p,
.banner3-boxes2 p {
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    padding-top: 3vh;
}
/* banner4 */
.banner4{
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.banner4-box-sec{
    justify-content: space-evenly;
    margin: 5vh 0;
}
.banner4-box-sec div{
    width: 22%;
    text-align: center;
}
.banner4-box-sec div img{
    width: 70%;
}
.banner4-box-sec div h3{
    font-size: 20px;
    color: rgb(34, 34, 34);
    font-weight: 800;
    padding: 2vh 0;
}
.banner4-box-sec div p{
    color: var(--gray-dark);
    font-weight: 500;
}
/* banner5 */
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 10vh 0;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    padding: 0 5%;
}

.slide {
    width: 30%;
    flex-shrink: 0;
    padding: 5vh 3%;
    box-sizing: border-box;
    background: lightblue;
    border: 1px solid #ccc;
    margin-right: 20px;
    height: 230px;
    color: white;
}
.slide h3{
    font-size: 22px;
    font-weight: 800;
}
.slide p{
    font-size: 18;
    font-weight: 500;
    padding: 1vh 0;
}

.slide:last-child {
    margin-right: 0;
}

/* Middle slide style */
.middle {
    height: 250px;
    /* Height of the middle slide */
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.banner5 .active {
    background-color: var(--secondry);
}
 
/* ====================Gallery Page============= */
.image-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  
  .image-container {
    position: relative;
    width: 30%;
    height: 50vh;
    margin-top: 5vh;
    border: 7px solid red;
    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .image-container:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
  }

  /* Overlay for hover */
.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.5); /* Red color with opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;

  }
  
  .image-container:hover::after {
    opacity: 1; /* Show overlay on hover */
  }
  
  .add-sign {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background-color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2; /* Add sign will be above everything */
  }
  
  .image-container:hover .add-sign {
    display: block;
  }
  
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 70vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .popup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .popup.active {
    display: block;
    opacity: 1;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

/* =================About Page Style ==============*/
.about-banner1,.about-banner2{
    margin:7vh 0;
}
.about-banner1-box1{
    width: 50%;
}
.about-banner1-box1 p{
    font-size: 18px;
    line-height: 1.4;
    text-align: justify;
}
.about-banner1-box2 {
    width: 40%;
    position: relative;
  }
  
  .about-banner1-box2 img {
    width: 100%;
  }
  .span1,.span2,.span3,.span4,
  .span5,.span6,.span7,.span8{
    position: absolute;
    width: 20%;
    height: 10px;
    background-color: red;
    z-index: 2;
  }
  .span5,.span6,.span7,.span8{
    width: 2%;
    height: 20vh;
  }

  .span1,.span2{
    top: 0%;
  }
  .span3,.span4,.span7,.span8{
    bottom: 0%;
  }
  .span3,.span1,.span5,.span7{
    left: 0;
  }
  .span4,.span2,.span6{
    right: 0;
  }

  .about-banner2-box1,.about-banner2-box2{
    width: 48%;
    border: 1px solid var(--gray);
    padding: 2%;
    position: relative;
    margin-top: 5vh;
  }
  .about-banner2{
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .about-banner2 div{
    width: 45%;
    position: relative;
  }
  .about-banner2 div img{
    width: 100%;
    box-shadow: 0 0 15px 0 black;
  }
  .about-banner2-box1 p,.about-banner2-box2 p{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
  }
  .about-banner2-box1 p i{
    font-size: 22px;
    font-weight: 900;
    padding-right: 10px;
  }
  .about-banner2-box1 span,.about-banner2-box2 span{
    position: absolute;
    color: white;
    padding: 10px 20px;
    top: -10%;
    font-size: 18px;
    font-weight: 700;
  }
  .about-banner2-box1 span i ,.about-banner2-box2 span i{
    padding-right: 10px;
  }
  .about-banner2-box1 span{
    background-color: red;
  }
  .about-banner2-box2 span{
    background-color: var(--secondry);
  }

  
/* =================Contact Page Style ==============*/


/* starting of  Contact us  */
.contact-container {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 2rem;
	background-color: #fafafa;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
    font-family: var(--font-family-sans-serif);
  }
  
  .form {
	width: 100%;
	max-width: 820px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form {
	background-color: red;
	position: relative;
  }
  
  .circle {
	border-radius: 50%;
	background: linear-gradient(135deg, transparent 20%, red);
	position: absolute;
  }
  
  .circle.one {
	width: 130px;
	height: 130px;
	top: 130px;
	right: -40px;
  }
  
  .circle.two {
	width: 80px;
	height: 80px;
	top: 10px;
	right: 30px;
  }
  
  .contact-form:before {
	content: "";
	position: absolute;
	width: 26px;
	height: 26px;
	background-color: red;
	transform: rotate(45deg);
	top: 50px;
	left: -13px;
  }
  
  .contact-form form {
	padding: 2.3rem 2.2rem;
	z-index: 10;
	overflow: hidden;
	position: relative;
  }
  
  .title {
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 0.7rem;
  }
  
  .input-container {
	position: relative;
	margin: 1rem 0;
  }
  .input-container input::placeholder,textarea::placeholder{
	color:white;
  }
  
  .input {
	width: 100%;
	outline: none;
	border: 2px solid #fafafa;
	background: none;
	padding: 0.6rem 1.2rem;
	color: #fff;
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	border-radius: 25px;
	transition: 0.3s;
  }
  
  textarea.input {
	padding: 0.8rem 1.2rem;
	min-height: 150px;
	border-radius: 22px;
	resize: none;
	overflow-y: auto;
  }
  .input-container.textarea label {
	top: 1rem;
	transform: translateY(0);
  }
  
  .btnn {
	padding: 0.6rem 1.3rem;
	background-color: #fff;
	border: 2px solid #fafafa;
	font-size: 0.95rem;
	color: red;
	line-height: 1;
	border-radius: 25px;
	outline: none;
	cursor: pointer;
	transition: 0.3s;
	margin: 0;
  }
  
  .btnn:hover {
	background-color: transparent;
	color: #fff;
  }
  
  .input-container span {
	position: absolute;
	top: 0;
	left: 25px;
	transform: translateY(-50%);
	font-size: 0.8rem;
	padding: 0 0.4rem;
	color: transparent;
	pointer-events: none;
	z-index: 500;
  }
  
  .input-container span:before,
  .input-container span:after {
	content: "";
	position: absolute;
	width: 10%;
	opacity: 0;
	transition: 0.3s;
	height: 5px;
	background-color: rgb(15, 61, 131);
	top: 50%;
	transform: translateY(-50%);
  }
  
  .input-container span:before {
	left: 50%;
  }
  
  .input-container span:after {
	right: 50%;
  }
  
  .input-container.focus label {
	top: 0;
	transform: translateY(-50%);
	left: 25px;
	font-size: 0.8rem;
  }
  
  .input-container.focus span:before,
  .input-container.focus span:after {
	width: 50%;
	opacity: 1;
  }
  
  .contact-info {
	padding: 2.3rem 2.2rem;
	position: relative;
  }
  
  .contact-info .title {
	color: red;
  }
  
  .text {
	color: #333;
	margin: 1.5rem 0 2rem 0;
  }
  
  .information {
	display: flex;
	color: #555;
	margin: 0.7rem 0;
	align-items: center;
	font-size: 0.95rem;
  }
  .information i{
    color:white;
    background-color: red;
    border-radius: 50%;
    padding: 10px;
    margin-right: 10px;
  }
  
  .icon {
	width: 28px;
	margin-right: 0.7rem;
  }
  
  .social-media {
	padding: 2rem 0 0 0;
  }
  
  .social-media p {
	color: #333;
  }
  
  .social-icons {
	display: flex;
	margin-top: 0.5rem;
  }
  
  .social-icons a {
	width: 35px;
	height: 35px;
	border-radius: 5px;
	background: linear-gradient(45deg, red, red);
	color: #fff;
	text-align: center;
	line-height: 35px;
	margin-right: 0.5rem;
	transition: 0.3s;
  }
  
  .social-icons a:hover {
	transform: scale(1.05);
  }
  
  .contact-info:before {
	content: "";
	position: absolute;
	width: 110px;
	height: 100px;
	border: 22px solid red;
	border-radius: 50%;
	bottom: -77px;
	right: 50px;
	opacity: 0.3;
  }
  
  .big-circle {
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: red;
	bottom: 52%;
	right: 50%;
	transform: translate(-40%, 38%);
  }
  
  .big-circle:after {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	background-color: #fafafa;
	border-radius: 50%;
	top: calc(50% - 180px);
	left: calc(50% - 180px);
  }
  
  .square {
	position: absolute;
	height: 400px;
	top: 50%;
	left: 50%;
	transform: translate(181%, 11%);
	opacity: 0.2;
  }
/* Services Pages Styling */
.service-banner1{
    background-image: url('/images/services-ambulane.jpg');
    background-position: center center;
    background-size: cover;
    height: auto;
    padding: 5vh 5%;
}
.service-banner1-box1{
    width: 50%;
    color: white;
}
.service-banner1-box1 div img{
    background-color: white;
    border-radius: 50%;
    padding: 5px;
}
.service-banner1-box1 p{
    font-size: 20px;
    padding: 5vh 0;
    text-align: justify;
}
.services-banner1-boxsec{
    gap: 5%;
    text-align: center;

}
.services-banner1-boxsec div{
    width: 30%;
    background-color: white;
    color: var(--blue);
    border-radius: 10px;
    padding: 10px 0;
}
.services-banner1-boxsec div h3{
    font-size: 30px;
}
.services-banner1-boxsec div h4{
    color: var(--gray-dark);
}
.service-banner1-box2 a{
    background-color: red;
    color: white;
    padding: 5px 20px;
    font-size: 18px;
    border-radius: 10px;
}
.service-banner1-box2 div{
    background-color: var(--cyan);
    margin-top: 5vh;
    border-radius: 10px;
    color: rgb(1, 21, 121);
    text-align: center;
    padding: 4vh 0;
    font-size: 15px;
}
.service-banner1-box2 div form input{
    width: 90%;
    height: 45px;
    margin-top: 3vh;
}
.service-banner1-box2 div form input[type="submit"]{
    color: white;
    background-color: rgb(1, 21, 121);
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
}
.service-banner1-box2 div form input[type="submit"]:hover{
    background-color: white;
    color: rgb(1, 21, 121);
}
/*Services banner2 */
.service-banner2{
    width: 80%;
    margin: 5vh 10%;
    background-image: url('/images/internet-img-26.jpg');
    text-align: center;
    padding: 0;
}
.service-banner2 h2,.service-banner3-box1 h3{
    color: var(--secondry);
}
.service-banner2 h3{
    font-size: 50px;
    padding: 10vh 0;
}
.service-banner2 p{
    color: var(--gray);
    background-color: rgb(226, 225, 225);
    padding: 5vh 2%;
    font-size: 18px;
    font-weight: 600;
}
/* service-banner3 */
.service-banner3{
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: rgb(243, 243, 243);
}
.service-banner3-box1,.service-banner3-box2{
    width: 50%;
}
.service-banner3-box2{
    justify-content: space-evenly;
}
.service-banner3-box1 h1{
    color: black;
    padding: 3vh 0;
}
.service-banner3-box1 h5,.service-banner3-box1 p{
    color: var(--gray);
    padding-top: 3vh;
}
.service-banner3-box1 h5{
    font-size: 20px;
}
.service-banner3-box2-inner1,.service-banner3-box2-inner2{
    width: 47%;
    padding: 5vh 4%;
}
.service-banner3-box2-inner1{
    background-color: white;
    line-height: 1.5;
}
.service-banner3-box2-inner2{
    background-color: var(--blue);
    color: white;
}
.service-banner3-box2-inner1 i{
    color: var(--blue);
}
.service-banner3-box2-inner2 i{
    color: var(--warning);
}
.service-banner3-box2 div i{
    font-size: 40px;
}
.service-banner3-box2 div h2{
    padding: 4vh 0;
}
.service-banner3-box2 div p{
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
}
/* thanks Page */
.thanks-page{
    width: 100%;
    height: 100vh;
    background-color: var(--warning);
    padding: 0 10%;
    padding-top: 20vh;
}
.thanks-page div{
    background-color: white;
    height: 80vh;
    border-radius: 20px 20px 0 0;
    text-align: center;
}
.thanks-page div img{
    width: 10%;
    margin: 5vh 0;
}
.thanks-page div h2{
    font-size: 25px;
    color: var(--gray-dark);
}
