﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    width:100%;
    height:100%;
    font-family:'Times New Roman'
}
.sec-1 {
    display: flex;
    background: #8f356f;
    background: linear-gradient(0deg,rgba(143, 53, 111, 1) 0%, rgba(83, 51, 72, 1) 100%);
    padding: 5px;
    justify-content: space-between;
}
.sec-1 i{
    color:white;
    font-size:20px;
}
a.login {
    background: white;
    color: black;
    padding: 0 10px;
    border-radius: 5px;
    font-weight: 400;
}
.sec-1>div{
    display:flex;
}
   section a{
        text-decoration:none;
        color:white;
        margin-right:10px;
        font-size:16px;
        font-weight:500;
        display:block;
    }

.sec-2 {
    display: flex;
    background: white;
    padding: 5px 10px;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('img/slides/slide3.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}
.sec-2 img{
    width:200px;
}
    .sec-2 > div {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        margin-left: 20px;
    }
.sidelogo >i {
    display: none;
    color:darkblue;
    font-size:40px;
}
nav {
    padding: 10px;
}
nav ul{
    display:flex;
    grid-gap:20px;
}
nav li{
    list-style:none;
   
}
    nav li a{
        color:black;
        text-decoration:none;
    }
@media only screen and (max-width:786px) {
    .sidelogo>img{
        display:none;
    }
    .sidelogo >i {
        display: block;
    }
    .logo-sec h1{
        font-size:18px;
        text-align:center;

    }
    .logo-sec  p {
        font-size: 12px;
        text-align: center;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        grid-gap: 20px;
        
    }
    nav{
        display:none;
        transition:all 0.5s ease;
    }
        nav.active {
            display: block !important;
            
        }
}
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    background-color: #25D366;
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp-btn:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }

.whatsapp-icon {
    font-size: 28px;
    margin-right: 10px;
}

.button-text {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
}
.maincarousel {
    position: relative !important;
}

    .maincarousel.owl-theme .owl-dots {
        text-align: center;
        position: absolute !important;
        display: flex !important;
        top: 90% !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
      
    }

@media (max-width: 800px) {
    .maincarousel.owl-theme .owl-dots {
        top: 70% !important;
    }
}
.service {
    width: 95%;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    /*height:100vh;*/
}
.news-container {
    width: 100%;
    height: 40px;
    background: #8f356f;
    background: linear-gradient(0deg,rgba(143, 53, 111, 1) 0%, rgba(83, 51, 72, 1) 100%);
    color: white;
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}

.news-ticker {
    position: absolute;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.news-item {
    margin-right: 40px;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border-right:1px solid black;
   
   
    
}

.pdf-link {
    color: black;
    text-decoration: none;
    margin-left: 15px;
    padding: 3px 8px;
    /*border: 1px solid #00ff00;*/
    border-radius: 3px;
    background-color:white;
}
    .pdf-link i{
        color:red;
    }
    .pdf-link:hover {
        background-color: #00ff00;
        color: #333;
    }

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.news-container:hover .news-ticker {
    animation-play-state: paused;
}
.intro{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    
}
    .intro > div {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px;
        padding: 10px;
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
        height: 150px;
        position: relative;
    }
    .intro img {
        width: 150px;
        border-radius: 10%;
        margin:10px;
        border:3px solid white;
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    }
    .intro h4 {
        color: darkblue;
        border-bottom: 2px solid red;
    }
    .intro a{
        position:absolute;
        top:70%;
        left:70%;
        display:flex;
        background:darkblue;
        color:white;
        padding:3px;
        text-decoration:none;
    }
.footer {
    background: #8f356f;
    background: linear-gradient(0deg,rgba(143, 53, 111, 1) 0%, rgba(83, 51, 72, 1) 100%);
    padding: 25px 0 0 0;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col {
    padding: 0 15px;
}

    .footer-col h4 {
        font-size: 18px;
        color: #ffffff;
        text-transform: capitalize;
        margin-bottom: 35px;
        font-weight: 500;
        position: relative;
    }

        .footer-col h4::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            background-color: #e91e63;
            height: 2px;
            box-sizing: border-box;
            width: 50px;
        }

    .footer-col ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        font-size: 16px;
        text-transform: capitalize;
        color: #ffffff;
        text-decoration: none;
        font-weight: 300;
        color: #bbbbbb;
        display: block;
        transition: all 0.3s ease;
    }

        .footer-col ul li a:hover {
            color: #ffffff;
            padding-left: 8px;
        }

    .footer-col .social-links a {
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: rgba(255, 255, 255, 0.2);
        margin: 0 10px 10px 0;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ffffff;
        transition: all 0.5s ease;
    }

        .footer-col .social-links a:hover {
            color: #24262b;
            background-color: #ffffff;
        }

.address p {
    color: #bbbbbb;
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
}

/* Responsive */
@media(max-width: 767px) {
    .row {
        grid-template-columns: 1fr;
    }

    .footer-col {
        margin-bottom: 30px;
    }
}

.copyright {
    text-align: center;
    color: #bbbbbb;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}
.btn-row {
    display: flex;
    column-gap: 50px;
    /*background: #001021;*/
    color: white;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 2px solid red;
}
    .btn-row > div {
        /*width: 150px;*/
        height: 30px;
        align-items: center;
        justify-content: center;
        display: flex;
        margin: 5px;
        background: #8f356f;
        background: linear-gradient(0deg,rgba(143, 53, 111, 1) 0%, rgba(83, 51, 72, 1) 100%);
        padding: 20px 0;
        border-radius: 5px;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    }
        .btn-row > div:hover{
            transform:scale(1.06);
        }
        .btn-row a {
            color: white;
            font-size: 25px;
            text-decoration: none;
            /*border-left: 2px solid white;
        border-right: 2px solid white;*/
            padding: 10px;
        }
    .btn-row a i{
        margin:10px;
    }
@media only screen and (max-width:786px) {
    .btn-row a {
        color: white;
        font-size: 15px;
        text-decoration: none;
        padding: 5px;
    }

        .btn-row a i {
            margin: 5px;
        }
    .btn-row {
        display: flex;
        column-gap: 20px;
    }
   
}
.welcomepart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('img/bgimg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding:50px;
}
.welcomepart h2{
    padding:10px;
    font-size:35px;
}
.welcomepart>div{
    font-size:20px;
    border:2px solid red;
    padding:10px;
    border-radius:5px;
    display:flex;
    flex-direction:column;
   display:block;
   width:100%;
}
.gridview-style{
   justify-content:center;
   align-items:center;
   width:100%;
   
}
    .gridview-style th {
        margin: 5px;
        padding: 5px;
        background-color:darkred;
        color:white;
    }
.gridview-style td{
    margin:10px;
    padding:10px;
}
.title-col{
    width:88%
}
@media only screen and (max-width:786px){
    .welcomepart h2 {
        padding: 5px;
        font-size: 20px;
        align-items:center;
        justify-content:center;
        text-align:center;
    }
    .gridview-style th {
        margin: 5px;
        padding: 5px;
        background-color: darkred;
        color: white;
    }

    .gridview-style td {
        margin: 5px;
        padding: 5px;
    }

    .title-col {
        width: 88%
    }
}