﻿    body {
        font-family: "Open Sans", sans-serif;
        color: #444444;
        background-color:#fff;
   
    }
    
    header.sticky {
        background: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

header {
    position: fixed;
    width: 100%;
    color: black;
    z-index: 100;
    transition: 0.5s;
    background: #fff;
    /* background: #0000008c;*/
}

    .navbar input[type="checkbox"],
    .navbar .hamburger-lines {
        display: none;
    }

    .container {
        max-width: 1200px;
        width: 90%;
        margin: auto;
    }


    .navbar-container {
        display: flex;
        justify-content: space-between;
        height: 64px;
        align-items: center;
    }

        .navbar-container ul {
            margin-left: 45%;
        }

        .menu-items {
            order: 2;
            display: flex;
        }

        .menu-items li {
            list-style: none;
            margin-left: 1.5rem;
            font-size: 1.3rem;
            font-family: "Trirong", serif;
           
        }
         .menu-items li:hover {
            
             transform: scale(1.2);
             text-shadow: none;
         }

        .navbar a {
            color: black;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease-in-out;
            
        }
         
         .navbar a:hover {
            color: #2c6bcb;
         }

            header.sticky a {
                color: black;
                text-decoration: none;
                font-weight: 600;
                transition: color 0.3s ease-in-out;
            }

            header.sticky i {
                color: black;
            }

            header.sticky i:hover {
                color: #2c6bcb;
            }

            header.sticky a:hover {
               color: #2c6bcb;
            }

  
@media (max-width: 768px) {
    header .sticky {
        display: none;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
        margin-top:-2%;
    }

        .navbar-container input[type="checkbox"] {
            position: absolute;
            display: block;
            height: 32px;
            width: 30px;
            top: 20px;
            left: 20px;
            z-index: 5;
            opacity: 0;
            cursor: pointer;
        }

        .navbar-container .hamburger-lines {
           
            height: 24px;
            width: 35px;
            position: absolute;
            top: 13px;
            left: -7px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            
        }

            .navbar-container .hamburger-lines .line {
                display: block;
                height: 5px;
                width: 86%;
                border-radius: 10px;
                background: black;
                
            }

            .navbar-container .hamburger-lines .line1 {
                transform-origin: 0% 0%;
                transition: transform 0.3s ease-in-out;
            }

            .navbar-container .hamburger-lines .line2 {
                transition: transform 0.2s ease-in-out;
            }

            .navbar-container .hamburger-lines .line3 {
                transform-origin: 0% 100%;
                transition: transform 0.3s ease-in-out;
            }

        .navbar .menu-items {
            padding-top: 100px;
            background: #fff;
            height: 100vh;
            width:100vw;
            transform: translate(-150%);
            display: flex;
            flex-direction: column;
            margin-left: -50px;
            padding-left: 40px;
            transition: transform 0.5s ease-in-out;
            box-shadow: 5px 0px 10px 0px #aaa;
     
        }

        .navbar .menu-items li {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            font-weight: 500;
            color: black;
            text-align:center;
        }

            .navbar .menu-items li ul {
                justify-content: left;
                
            }

            .navbar .menu-items li a {
                font-weight: 500;
                color: black;
            }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

    .imglogo {
        display: none;
    }
}

@media (max-width: 768px) {
   

    #footer .footer-top {
        padding: 60px 0 30px 0;
        background-image: url(assets/img/footerback.png);
        background-repeat: no-repeat;
        background-size: cover;
        box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
        height: 50%;
        margin-top: 15%;
    }
}

    @media (max-width: 500px) {
        .navbar-container input[type="checkbox"]:checked ~ .logo {
            display: none;
        }
    }


    @media (min-width: 1800px) {
        header.sticky {
            background: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        
        }

        header {
            position: fixed;
            width: 100%;
            color: #fff;
            z-index: 100;
            transition: 0.5s;
            height: 30%;
        }

        .navbar input[type="checkbox"],
        .navbar .hamburger-lines {
            display: none;
        }

        .container {
            max-width: 1200px;
            width: 90%;
            margin: auto;
        }


        .navbar-container {
            display: flex;
            justify-content: space-between;
            height: 0px;
            align-items: center;
        }

            .navbar-container ul {
                margin-left: 49%;
            }

        .menu-items {
            order: 2;
            display: flex;
        }

            .menu-items li {
                list-style: none;
                margin-left: 1.5rem;
                font-size: 1.3rem;
                font-family: "Trirong", serif;
               
            }

                .navbar a {
                    color: #fff;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 45px;
                    transition: color 0.3s ease-in-out;
                }

            .navbar a:hover {
                color: #2c6bcb;
            }

            header.sticky a {
                color: black;
                text-decoration: none;
                font-weight: 600;
                font-size: 45px;
                transition: color 0.3s ease-in-out;
            }

            header.sticky a:hover {
                color: #2c6bcb;
            }
        .showcase h2 {
            margin-top: 250px;
            font-size: 2.5em;
            font-weight: 900;
        }

    }
        

        .name {
            color: #2c6bcb;
        }

        .work {
            font-weight: bold;
            font-size: 15px;
        }



        .v-profile {
            color: blue;
            cursor: pointer;
        }

        .box {
            -webkit-box-shadow: 13px 12px 5px -10px rgba(196,194,196,0.72);
            -moz-box-shadow: 13px 12px 5px -10px rgba(196,194,196,0.72);
            box-shadow: 13px 12px 5px -10px rgba(196,194,196,0.72);
        }

        .col-md-3 {
            margin-top: 10px;
        }

        .imgg {
            background-image: url(assets/img/queryimg1.png);
            background-repeat: no-repeat;
            background-size: cover;
        }

        .btn {
            font-size: 1em;
            color: #fff;
            background: #2c6bcb;
            display: inline-block;
            padding: 6px 15px;
            width: 20%;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: 0.5s;
        }

            .btn:hover {
                letter-spacing: 6px;
            }

/**
    * Trusted logo slider *
*/
.logoimg {
    width: 90px;
    height: 90px;
}
.logo-slider {
	background: white;
	-webkit-box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
	box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.logo-slider::before, .logo-slider::after {
	background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 175px;
	position: absolute;
	width: 200px;
	z-index: 2;
}

.logo-slider::after {
	right: 0;
	top: 0;
	-webkit-transform: rotateZ(180deg);
	transform: rotateZ(180deg);
}

.logo-slider::before {
	left: 0;
	top: 0;
}

.logo-slider .logo-slide-track {
	-webkit-animation: logo-scroll 60s linear infinite;
	animation: logo-scroll 60s linear infinite;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: calc(250px * 14);
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

.logo-slider .slide {
	height: 150px;
	width: 250px;
	padding: 20px;
    background-color:whitesmoke;
}

@-webkit-keyframes logo-scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-webkit-transform: translateX(calc(-250px * 7));
		transform: translateX(calc(-250px * 7));
	}
}

@keyframes logo-scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-webkit-transform: translateX(calc(-250px * 7));
		transform: translateX(calc(-250px * 7));
	}
}
/*--------------------------------------------------------------
    # Awards and Achivements
--------------------------------------------------------------*/
.card:hover {
    animation: pulse;
    animation-duration: 2s;
}

.hrcolor {
    color: #0d70ea;
    border-width: 5px;
}
.imgaward
{
    height:100%;
    width:125%;
}
.imgachivements {
    max-width: 100%;
    height: 55%;
    border-radius: 10px;
    margin-left:10%;

}
.imgachivements:hover {
        animation: pulse;
        animation-duration: 2s;
        box-shadow: 2px 3px 4px #fff;
}

/*--------------------------------------------------------------
    # our presence
--------------------------------------------------------------*/
.eventpsg {
    text-align: justify;
    font-size: 15px;
}
.eventsliderheading {
    height: 100%;
    width: 61%;
    background-color: #020708ad;
    animation: pulse;
    animation-duration: 2s;
    border-radius: 5px;
    font-size:10px;
}
.eventsliderhead {
    color: #161111;
    font-weight: 900;
    font-size: 17px;
}
.nav-link {

    text-align: center;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 1px 1px 2px skyblue;
    width:110%;
}
.nav-link:hover {
  background-image: linear-gradient(#0dccea, #0d70ea);
       
}


    .departments {
        overflow: hidden;
    }

    .departments .nav-tabs {
        border: 0;
    }

    .departments .nav-link {
        border: 0;
        padding: 12px 15px 12px 0;
        transition: 0.3s;
        color: #2c4964;
        border-radius: 0;
        border-right: 2px solid #ebf1f6;
        font-weight: 600;
        font-size: 15px;
    }

        .departments .nav-link:hover {
            color: #1977cc;
            border-color: #1977cc;
        }

        .departments .nav-link.active {
            color: #1977cc;
            border-color: #1977cc;
        }

    .departments .tab-pane.active {
        -webkit-animation: fadeIn 0.5s ease-out;
        animation: fadeIn 0.5s ease-out;
    }

     .headingpresence {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #2c4964;
     }

    .departments .details p {
        color: #777777;
    }

        .departments .details p:last-child {
            margin-bottom: 0;
        }

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
   
}

@media (max-width: 992px) {
    .departments .nav-link {
        border: 0;
        padding: 15px;
    }

        .departments .nav-link.active {
            color: #fff;
            background: #1977cc;
        }
}



/*--------------------------------------------------------------
    # completed Projects
--------------------------------------------------------------*/
.card .card-image {
    overflow: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
   
}

    .card .card-image img {
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
       
    }

    .card .card-image:hover img {
        -webkit-transform: scale(1.2) rotate(-7deg);
        -moz-transform: scale(1.2) rotate(-7deg);
        -ms-transform: scale(1.2) rotate(-7deg);
        -o-transform: scale(1.2) rotate(-7deg);
        transform: scale(1.2) rotate(-7deg);
    }

.card {
    padding:10px;
    font-family: 'Roboto', sans-serif;
    border: none;
    margin-top: 10px;
    position: relative;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 4px 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

   /* .card:hover {
       background-color:skyblue;
    }
*/
    .card .card-content {
        padding: 10px;
        background: #1A9AE1;
        color: white;
    }
    .card-title
    {
        font-size:20px;
        color:black;
        text-align:center;
    }
/*--------------------------------------------------------------
    # Team
--------------------------------------------------------------*/
.team_profile {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 20px 0;
    background-image: url("assets/img/gallery/teamback.jpg");
    background-attachment: fixed;
    background-size: cover;
}

            .team_profile::before {
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                background: rgba(11, 93, 217,0.15);
            }

           /* .our_team {
                position: relative;
                overflow: hidden;
                margin-bottom: 10px;
                width: 600px;
                height: 300px;
                margin-left: 10%;
                border-radius: 15px;
            }*/

            .teamimg {
                position: relative;
                overflow: hidden;
                margin-bottom: 10px;
                width: 600px;
                height: 350px;
                border-radius: 15px;
                margin-left:45%;
                
            }

        .team-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            text-align: center;
            padding: 50px 10px;
            background-color: rgba(0, 35, 82, 0.7);
            transform: scale(0.9,0.9)translateY(-120%);
            transition: all 0.50s linear;
        }

        .our_team:hover .team-content {
            transform: scale(0.9,0.9)translateY(0%);
        }

        .teamp {
            color: black;
            text-align: justify;
            margin-bottom: 1.6em;
            font-family: sans-serif;
            font-size:16px;
        
        }
   
/*--------------------------------------------------------------
    # Sections General
--------------------------------------------------------------*/

.titleText {
    color: #111;
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-top: 10%;
    font-family: "Trirong", serif;
    text-shadow: 2px 2px 3px;
}

            .titleText span {
                color: #0d70ea;
                font-weight: 700;
                font-size: 1em;
                font-family: "Trirong", serif;
            }

        .title {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

    /*--------------------------------------------------------------
    # Gallery
    --------------------------------------------------------------*/
            .img-gall {
                height: 100%;
                width: 100%;
            }
       

            .gallery .gallery-item {
                overflow: hidden;
               
            }

            .gallery .gallery-item img {
             transition: all ease-in-out 0.4s;
            }

             .gallery .gallery-item:hover img {
                transform: scale(1.1);
             }

            .gallery-item {
                position: relative;
                width: 95%;
                height: 95%;
                border-radius: 20px;
               
               
            }

            .overlay {
                position: absolute;
                bottom: 100%;
                left: 0;
                right: 0;
                background-color: #020708ad;
                overflow: hidden;
                width: 100%;
                height: 0;
                transition: .5s ease;
                color: white;
                font-size: 20px;
                padding: 20px;
                text-align: center;
                border-bottom-right-radius: 80px;
            }

            .gallery-item:hover .overlay {
                bottom: 0;
                height: 100%;
            }

    /*--------------------------------------------------------------
    # Contact
    --------------------------------------------------------------*/
        .contact .info {
            width: 100%;
            background: #fff;
        }

            .contact .info i {
                font-size: 20px;
                color: #1977cc;
                float: left;
                width: 44px;
                height: 44px;
                background: #d6e9fa;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50px;
                transition: all 0.3s ease-in-out;
            }

            .contact .info h4 {
                padding: 0 0 0 60px;
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 5px;
                color: #2c4964;
            }

            .contact .info p {
                padding: 0 0 0 60px;
                margin-bottom: 0;
                font-size: 14px;
                color: #4b7dab;
            }

            .contact .info .email,
            .contact .info .phone {
                margin-top: 40px;
            }

                .contact .info .email:hover i,
                .contact .info .address:hover i,
                .contact .info .phone:hover i {
                    background: #1977cc;
                    color: #fff;
                }

                .form-control {
                    border-radius: 5px;
                    box-shadow: none;
                    font-size: 14px;
                    border-color: #4b7dab;
                }

        .contact .php-email-form {
            width: 100%;
            background: #fff;
        }

            .contact .php-email-form .form-group {
                padding-bottom: 20px;
            }
 
        @-webkit-keyframes animate-loading {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes animate-loading {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

/*--------------------------------------------------------------
# Footer --------------------------------------------------------------*/
.imglogofooter {
    height: 22%;
    width: 25%;
   /* margin-top: 10%;*/
   
}
#footer {
    color: #444444;
    font-size: 14px;
    background: #f1f7fd;
}

    #footer .footer-top {
        /*padding: 60px 0 30px 0;*/
        background-image: url(assets/img/gallery/footerbackgroundnew.png);
        background-repeat: no-repeat;
        background-size: cover;
        box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
        margin-top: 15%;
    }

                #footer .footer-top h4 {
                    font-size: 16px;
                    font-weight: bold;
                    color: #fff;
                    position: relative;
                    padding-bottom: 12px;
              
                }
        #footer .footer-top p {
            color: #fff;
            font-size: 15px;
            font-weight: 500;
        }

                    #footer .footer-top .footer-links {
                        margin-bottom: 30px;
                    }

                    #footer .footer-top .footer-links ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                    }

                        #footer .footer-top .footer-links ul i {
                            padding-right: 2px;
                            color: #fff;
                            font-size: 15px;
                            line-height: 1;
                        }

                        #footer .footer-top .footer-links ul li {
                            padding: 10px 0;
                            display: flex;
                            align-items: center;
                        }

                        #footer .footer-top .footer-links ul li:first-child {
                                padding-top: 0;
                        }

                        #footer .footer-top .footer-links ul a {
                            color: #fff;
                            transition: 0.3s;
                            display: inline-block;
                            line-height: 1;
                            text-decoration: none;
                            font-size: 15px;
                            font-weight: 500;
                        }

                            #footer .footer-top .footer-links ul a:hover {
                                text-decoration: none;
                                color: black;
                                font-weight: 600;
                            }

           
            /*#footer .social-links a {
                font-size: 18px;
                display: inline-block;
                background: #1977cc;
                color: #fff;
                line-height: 1;
                padding: 8px 0;
                margin-right: 4px;
                border-radius: 50%;
                text-align: center;
                width: 36px;
                height: 36px;
                transition: 0.3s;
            }

                #footer .social-links a:hover {
                    background: #1c84e3;
                    color: #fff;
                    text-decoration: none;
                }
*/





