* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* overflow-x: hidden; */
    padding-top: 70px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hidden.in-view {
    opacity: 1;
    transform: translateY(0);
}

.pt-5,
.py-5 {
    padding-top: 8rem !important;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 2.5rem;
        padding-left: .5rem;
    }
}

body {
    padding-top: 70px;
}

/* Cursor start*/

.cursor {
    position: fixed;
    height: 50px;
    width: 50px;
    border: 1px solid black;
    left: 0;
    top: 0;
    z-index: 999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: .1s;
}

.cursor2 {
    position: fixed;
    width: 10px;
    height: 10px;
    z-index: 999;
    left: 0;
    top: 0;
    background-color: black;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.2s ease-out;
}


/* Cursor end*/


/* Custom Styling */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #f1f1f1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
}

.navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
    font-family: "Sora";
    /* justify-content: space-between; */
    /* display: flex; */
}

.navbar-nav .nav-link:hover {
    color: #F16624;
}

.navbar-nav .active {
    color: #F16624 !important;
}

.contact-us {
    position: relative;
    border: 2px solid black;
    border-radius: 10px;
    width: 170px;
    height: 48px;
    overflow: hidden;
    background-color: transparent;
    text-transform: uppercase;
    color: black;
    font-size: 14px;
    font-family: "Sora";
    font-weight: 700;
    padding: 12px;
}

.contact-us:hover {
    cursor: pointer;
    border: 2px solid #F16624;
    color: white;
    transition: all 0.3s ease-out;
    background-color: transparent;
}

.contact-us .round {
    border-radius: 50%;
    background-color: #F16624;
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: -1;
    animation: scale-down 0.2s forwards;
}

.contact-us.animate .round {
    animation: scale-up 0.5s forwards;
}

@keyframes scale-up {
    to {
        transform: scale(600);
    }
}

@keyframes scale-down {
    from {
        transform: scale(600);
    }

    to {
        transform: scale(0);
    }
}

.navbar-brand img {
    height: 40px;
}

/* Center the navigation links */
.navbar-nav {
    margin: 0 auto;
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 35px;
    }

    .btn-outline-dark {
        width: 100%;
        margin-top: 15px;
    }
}


/* Navigation end */


.get-started {
    position: relative;
    border: 2px solid black;
    border-radius: 10px;
    width: 170px;
    height: 48px;
    overflow: hidden;
    background-color: transparent;
    text-transform: uppercase;
    color: black;
    font-size: 14px;
    font-family: "Sora";
    font-weight: 700;
}


.get-started:hover {
    cursor: pointer;
    background-color: #F16624;
    color: white;
    transition: all 0.3s ease-out;
    border: none;
}

.get-started .round {
    border-radius: 50%;
    background-color: #F16624;
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: -1;
    animation: scale-down 0.2s forwards;
}

.contact-us.animate .round {
    animation: scale-up 0.5s forwards;
}


.contact-page {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.contact-section h1 {
    font-size: 25px;
    font-weight: bold;
    color: #000;
    position: relative;
    z-index: 1;
    display: inline-block;
    /* padding-bottom: 30px; */
    /* font-family: "Sora"; */
}

.text {
    padding-top: 50px;
}

.contact-section h1::before {
    content: "CONTACT US";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 0, 0, 0.1);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    font-size: 46px;

    z-index: -1;
    white-space: nowrap;
}

@media (min-width: 576px) {

    .contact-section h1::before {
        font-size: 110px;
    }
}

@media (min-width: 1200px) {
    .contact-section h1::before {
        font-size: 150px;
    }

    .contact-section h1 {
        font-size: 50px;
    }
}

.form-container {
    border: 1px solid #E6E6E6;
    padding: 22px;
    border-radius: 25px;
}

.form-h3 {
    font-size: 20px;
}



/* Connect Section Styles */
.connectsec {
    background: linear-gradient(179.81deg, #FFCBB2 -505.18%, #FFFFFF 157.66%);
    margin-top: 50px;
    /* padding: 30px 0; */
    /* padding-top: 30px; */
}

.co-section {
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


/* Connect Section Title */
.co-section h1 {
    font-size: 25px;
    font-weight: bold;
    color: #000;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.co-section h1::before {
    content: "CONNECT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 0, 0, 0.1);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    font-size: 50px;
    z-index: -1;
    white-space: nowrap;
    /* padding-bottom: 10%; */
}

/* Responsive adjustments */
@media (min-width: 576px) {
    .con-section h1::before {
        font-size: 110px;
    }
}

@media (min-width: 1200px) {
    .co-section h1::before {
        font-size: 150px;
        /* padding-bottom: 10%; */
    }

    .co-section h1 {
        font-size: 50px;
    }
}

.orange-box {
    background-color: #F16624;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: "sora";
}

.contact-box {
    padding: 20px;
    background-color: white;
}

.footer-text {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;

}

/* Google Map Button Styles */
.google-map-btn {
    border: 2px solid black;
    border-radius: 10px;
    width: 170px;
    height: 48px;
    background-color: transparent;
    color: black;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.google-map-btn:hover {
    cursor: pointer;
    border-color: #F16624;
    background-color: #F16624;
    color: white;
    transition: all 0.3s ease-out;
}

.google-map-btn .google-round {
    border-radius: 50%;
    background-color: #F16624;
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: -1;
    animation: scale-down 0.2s forwards;
}

p {
    font-family: "sora";
}

/* Footer Styles */
footer {
    background-color: black;
    padding: 10px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    flex-wrap: wrap;
    font-family: "sora";
}

.copy {
    font-size: 18px;
    margin-bottom: -9px;
}

.social-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 0px;
}


.social-icons .button {
    margin-right: 10px;
}

.social-icons a {
    color: white;
    text-decoration: none;
}

.social-icons .surat {
    margin-left: 10px;
    color: white;
    font-size: 18px;
}

/* Tooltip Styles */
.tool {
    position: relative;
    cursor: help;
    text-align: center;
}

.tool::before,
.tool::after {
    left: 50%;
    opacity: 0;
    position: absolute;
    z-index: -100;
}

.tool:hover::before,
.tool:focus::before,
.tool:hover::after,
.tool:focus::after {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 100;
}

.tool::after {
    background: #3E474F;
    border-radius: .25em;
    bottom: 130%;
    color: #EDEFF0;
    content: attr(data-tip);
    margin-left: -1.75em;
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26) .2s;
    transform: scale(.6) translateY(50%);
    width: 5.5em;
}


:root {
    --animate-duration: 800ms;
    --animate-delay: 0.9s;
}

.animate__animated.animate__slideInLeft {
    --animate-duration: 4s;
}

.animate__animated.animate__slideInRight {
    --animate-duration: 4s;
}

.animate__animated.animate__jackInTheBox {
    --animate-duration: 4s;
    opacity: 0.5s;
}

.animate__animated.animate__fadeIn {
    --animate-duration: 10s;
}

.animate__animated.animate__fadeInLeft {
    --animate-duration: 10s;
}

.animate__animated.animate__fadeInRight {
    --animate-duration: 10s;
}

.animate__animated.animate__bounceIn {
    --animate-duration: 10s;
}

/* connect page css end */