@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Calistoga&family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --color_primary:  #1037C6;
    --color_secondary: #4F93FE;
    --color_highlight: #fff5b2;
    --color_highlight_bright: #fff93e;
    --color_lowlight: #dedede;
    --color_light: #f8f8f8; 
    --bg-card:  #eef3f4;
    --dark: #161616;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: var(--color_light);
    color: var(--color_primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

p, ul, li{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--dark);
}

h1, h2, h3, h4, h5 {
    /*** font-family: 'Roboto Slab', sans-serif;***/
    font-family: "Calistoga", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--color_primary) !important;
}
.logo-text{
    /*** font-family: 'Roboto Slab', sans-serif;***/
    font-family: "Calistoga", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--color_primary) !important;
    font-size: 1.6rem;
    margin-left: 20px;
    margin-right: 20px;
}

/******************* Spinner Styles ********************/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.donut-spinner {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border: 0.4rem solid rgba(17, 10, 143, 0.2);
    border-top: 0.4rem solid #0c0ca0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/******************* Navbar Styles *******************/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--color-primary);
}


@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: right;
        align-items: right;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/******************* End of Navbar Styles *******************/

/******************* Main Content Styles *******************/
.main-content {
    flex: 1;
    padding-top: 70px; /* Adjust for fixed navbar */
}

section {
    padding: 60px 0;
    text-align: center;
}

/******************* End of Main Content Styles *******************/


/******************* Carousel Styles *******************/
#home {
    padding: 0;
    margin: 0;
}
.carousel-item {
    position: relative;
    overflow: hidden; /* Ensure the overlay doesn't exceed the container */
}

.carousel-item img {
    width: 100%;
    height: 86vh;
    object-fit: cover; /* Adjust as needed for image fit */
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Place overlay above image but below text */
}


.carousel-caption {
    padding: 10px 20px;
    border-radius: 5px;
    width: 80%;
    margin: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2; /* Ensure text is above the overlay */
}

.carousel-caption img {
    width: 50vh;
    height: 50vh;
}
.carousel-caption p {
    font-size: 1rem;
    color: #ddd;
}

.carousel-caption .btn-primary {
    background-color: #007BFF;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 15px;
}

.carousel-caption .btn-primary:hover {
    background-color: #0056b3;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #007BFF;
    border-radius: 50%;
    padding: 10px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 60vh;
    }

    .carousel-caption img {
        height: 30vh;
        width: 30vh;
    }


    .carousel-caption .btn-primary {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .carousel-caption {
        padding-left: 0px;
        padding-right: 0px;
    }
}

/******************* End of Carousel Styles *******************/

/******************* Topbar Styles *******************/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/******************* End of Topbar Styles *******************/



/******************* Main Header *******************/
.main-header {
    margin-top: -75px;
    background: url(../img/sphere.gif) center center no-repeat;
    background-size: cover;
}

.main-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}
/******************* End of Main Header *******************/

/******************* About Section *******************/
.about-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
/******************* End of About Section *******************/


/******************* Service Section *******************/
.card-mainservice{
    border-style: none !important;
}
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-weight: bold;
    font-size: 1.25rem;
}

.card-text {
    font-size: 0.95rem;
}

.card-service {
    background-color: #e8e9ff !important;
    border-radius: 0.75rem;
    border-style: none !important;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-service:hover {
    background-color: var(--color_highlight) !important;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
/******************* End of Service Section *******************/





/******************* Consultation Section *******************/
.card-consultation {
    background-color: #ffffff !important;
    border-radius: 0.75rem;
    border-style: 2px !important;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-consultation:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
/******************* End of Consultation Section *******************/




/******************* Portfolio Section *******************/
.card-portfolio {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-body-portfolio {
    padding: 1.5rem;
}

.card-title-portfolio {
    font-size: 1.25rem;
    font-weight: normal !important;
}

.card-text-portfolio {
    font-size: 1rem;
    color: #555;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004080;
}

.btn-contact {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-contact:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        text-align: left;
    }
}
/******************* End of Porfolio Section *******************/

/******************* Background Collection *******************/
.bg-white {
    background-color: #ffffff;
}
.bg-main {
    background-color: var(--color_primary);
    color: var(--color_light);
}
.bg-intro {
    margin-top: -20px;
    background: url(../img/main_background_official.png) bottom center no-repeat;
    background-size: cover;
    background-color: var(--bg-seventh) !important;
    color: rgb(26, 26, 26);
}

.bg-feature{
    background: url(../img/bg-feature.png) center center no-repeat;
    background-size: cover;
    background-color: var(--color_primary) !important;
}
.bg-footer{
    background: url(../img/bg-footer.png) center center no-repeat !important;
    background-size: cover !important;
    background-color: var(--color_primary) !important;
}
.bg-light {
    background-color: var(--color_light) !important;
}

.bg-top{
    background: url(../img/service_background.png) center center no-repeat;
    background-size: cover;
}

/******************* End of Background Collection *******************/


/******************* Text Collection *******************/
.text-highlight{
    color: var(--color_highlight_bright) !important;
}
/******************* End of Text Collection *******************/


/******************* Image Fill *******************/
.img-fill {
    position: relative;
    width: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the container */
}

@media (max-width: 600px) {
    .img-fill {
        padding: 20px;
    }
}
/******************* End of Image Fill *******************/

/******************* Footer and Before Footer Styles *******************/
.footer {
    background-color:var(--color_primary);
    color: #9aa7ff;
    padding: 5px;
    text-align: center;
    position: relative;  /**Change to fixed if you want the position keep on displayed below**/
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.15);
}
a.btn-link {
    text-decoration: none !important;
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--color_lowlight);
    font-weight: 300;
    transition: .3s;
}
a.btn-link:hover {
    color: var(--color_light);
    font-weight: normal;
}
/******************* End of Footer and Before Footer Styles *******************/

/******************* Contact Form Styles *******************/
.btn-main {
    background-color: var(--color_primary);
    color: var(--color_lowlight);
}

.btn-main:hover {
    background-color: var(--color_secondary);
    color: var(--color_light);
}

/******************* End of Contact Form Styles *******************/

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding-top: 60px;
    }
    
    .footer {
        padding: 10px;
    }
}


.card-main{
    padding:20px !important;
    border-radius: 20px !important;
    background-color: white !important;
    border-style: none !important;
}

.specialfont{
    font-family: "Calistoga", serif;
    font-weight: 300;
    font-style: normal;
}
/******************* Breadcumb Link Start *******************/
.breadcrumb-item a {
    text-decoration: none; /* Removes the underline */
    color: #007bff; /* Default link color (Bootstrap primary color) */
    transition: color 0.3s ease, border-bottom 0.3s ease; /* Smooth transition for hover effects */
    border-bottom: 2px solid transparent; /* Border effect with a transparent initial state */
}

.breadcrumb-item a:hover {
    color: #0056b3; /* Darker shade of the link color for the hover state */
    border-bottom: 2px solid #0056b3; /* Underline effect on hover */
}
.breadcrumb-item.active {
    font-weight: bold; /* Makes the active item bold */
    color: #0056b3; /* Sets the color of the active item */
}

.breadcrumb-item.active a {
    pointer-events: none; /* Disables the link functionality */
    text-decoration: none; /* Ensures there's no underline */
    color: inherit; /* Inherits the color from the parent (the active item) */
}
/******************* End of Breadcumb Link *******************/


/******************* hr tag *******************/
.fe-line {
    border: none;         /* Removes the default border */
    height: 1px;          /* Sets the height of the line */
    background-color: blue; /* Sets the color of the line */
    margin: 20px 0;       /* Optional: Adds some space above and below the line */
}
/******************* End of hr tag *******************/


