
@import url(font-awesome.css);
@import url(flaticon.css);

:root {
    --red: #fd0606;
    --orange: #f88221;
    --primary-color: #2196f3;
    --primary-glow: rgba(33, 150, 243, 0.8);
    --secondary-color: #9c27b0;
    --text-color: #ffffff;
    --bg-color: #0a0a12;
    --nav-bg: rgba(16, 16, 26, 0.7);
    --dropdown-bg: rgba(20, 20, 35, 0.8);
    --hover-color: #3f51b5;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --neon-glow: 0 0 10px rgba(33, 150, 243, 0.5),
                 0 0 20px rgba(33, 150, 243, 0.3),
                 0 0 30px rgba(33, 150, 243, 0.1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-bg: linear-gradient(135deg, var(--bg-color), #151530);
    --glass-effect: saturate(180%) blur(10px);
    --border-radius: 12px;
    --text-description: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*pre loader starts here*/

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1a1a1a, #000);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

/* DIYA BASE */
.diya {
  position: relative;
  width: 80px;
  height: 40px;
  background: #8b5a2b;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,140,0,0.6);
}

/* FLAME */
.flame {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 40px;
  background: radial-gradient(circle, #fff 10%, #ffcc00 40%, orange 70%);
  border-radius: 50%;
  animation: flicker 0.15s infinite alternate;
}

@keyframes flicker {
  from { transform: translateX(-50%) scale(1); }
  to { transform: translateX(-50%) scale(1.2); }
}

/* SMOKE */
.smoke {
  position: absolute;
  top: -70px;
  left: 50%;
  width: 10px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(8px);
  animation: smokeUp 3s infinite;
}

@keyframes smokeUp {
  0% { transform: translate(-50%, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -80px) scale(2); opacity: 0; }
}

/* TEXT */
.text {
  margin-top: 30px;
  color: var(--orange);
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  animation: fade 2s infinite;
}

.text span {
  display: block;
  font-size: 22px;
  margin-top: 10px;
}

@keyframes fade {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* PROGRESS BAR */
.progress-container {
  width: 200px;
  height: 6px;
  background: #333;
  margin-top: 25px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--orange);
  transition: width 0.3s;
}

/* PARTICLES */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: gold;
  border-radius: 50%;
  animation: float 5s linear infinite;
}

@keyframes float {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-200px); opacity: 0; }
}

/*Pre loader ends here*/


body{
    background-color: black;
    color:aliceblue;
}
.hidden{
    display: none;
}
/*    Header section      */


/* Header and Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--nav-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px var(--shadow-color);
    transition: var(--transition-medium);
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow);
    position: relative;
    display: inline-block;
    transition: var(--transition-medium);
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 15px var(--primary-glow),
                 0 0 30px var(--primary-glow);
}

.logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -4px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
    box-shadow: var(--neon-glow);
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: var(--neon-glow);
}

/* Icons */
.icon {
    transition: var(--transition-medium);
    vertical-align: middle;
}

.chevron-icon {
    transition: transform var(--transition-medium);
}

.has-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.hidden {
    display: none;
}

/* Dropdown Menus */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--dropdown-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all var(--transition-medium);
    box-shadow: 0 10px 30px var(--shadow-color);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--dropdown-bg);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.7rem 1rem;
    display: block;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    margin-bottom: 2px;
}

.dropdown a:hover {
    background: rgba(33, 150, 243, 0.15);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Search Bar */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    width: 180px;
    transition: all var(--transition-medium);
    font-size: 0.9rem;
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    width: 240px;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.3);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 5px;
    transition: var(--transition-fast);
}

.search-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    padding: 0.6rem;
    font-size: 1.2rem;
    transition: all var(--transition-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(15deg);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.6rem;
    transition: var(--transition-medium);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: all var(--transition-medium);
    border-radius: 10px;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
    width: 70%;
}

.hamburger span:last-child {
    top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-active .hamburger span:last-child {
    transform: rotate(-45deg);
    top: 9px;
}

/* Content Styling */
.content {
    margin-top: 70px;
    padding: 2rem;
}

.hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--text-description);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
}

.section {
    padding: 5rem 2rem;
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-medium);
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--text-description);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        align-items: flex-start;
        background: var(--nav-bg);
        backdrop-filter: var(--glass-effect);
        -webkit-backdrop-filter: var(--glass-effect);
        width: 80%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: right var(--transition-slow);
        box-shadow: -10px 0 30px var(--shadow-color);
        border-left: 1px solid var(--border-color);
    }

    .nav-active .nav-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(33, 150, 243, 0.15);
    }

    .dropdown {
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        padding: 0;
        padding-left: 1rem;
        margin-left: 1rem;
        display: none;
        box-shadow: none;
        border-left: 1px solid var(--border-color);
        transform: none;
        transition: all var(--transition-medium);
    }

    .dropdown::before {
        display: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .dropdown a {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .search-container {
        width: 100%;
    }

    .search-input, 
    .search-input:focus {
        width: 100%;
    }

    .search-input {
        padding: 0.8rem 1rem;
    }

    .theme-toggle {
        align-self: flex-start;
    }

    .chevron-icon {
        position: absolute;
        right: 1rem;
    }

    .has-dropdown.active .chevron-icon {
        transform: rotate(180deg);
    }
}


/*  header section ends here    */


/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

/* Modal Content */
.modal-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: 10% auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* Image Container */
.image-box {
  position: relative;
}

/* Image */
.image-box img {
  width: 100%;
  display: block;
}

/* Pay Button on Image */
.pay-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 18px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}

hr{
    margin: 80px 0;
    color: aliceblue;
}
.theader{
    margin: 20px 5%;
    display: flex;
    align-items: center;
    width: auto;
    margin-right: 0;
}
.theader h1 {
  padding: 5px;
  text-align: center;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: var(--orange);
  text-transform: uppercase;
  text-shadow: 1px 1px 0px var(--red),
               1px 2px 0px var(--red),
               1px 3px 0px var(--red),
               1px 4px 0px var(--red),
               1px 5px 0px var(--red),
               1px 6px 0px var(--red),
               1px 10px 5px rgba(58, 58, 58, 0.4),
               1px 15px 10px rgba(58, 58, 58, 0.3),
               1px 20px 30px rgba(58, 58, 58, 0.2),
               1px 25px 50px rgba(58, 58, 58, 0.1);
}
#home-slider{
 height: 500px;
 overflow: hidden;
 position: relative;
}
.carousel-inner img{
  object-fit: cover;
}

/* Play Button */
#musicBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #000, #222);
  color: gold;
  font-size: 20px;
  box-shadow: 0 0 15px gold;
  cursor: pointer;
  z-index: 9999;
  transition: 0.3s;
}

#musicBtn:hover {
  transform: scale(1.1);
}

.playing {
  box-shadow: 0 0 25px gold, 0 0 40px orange;
}

.home-about{
    margin-top: 60px;
    width: auto;
    height: 500px;
}
.home-about h4{
  color: var(--orange);
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 20px;
}
.home-about p {
    font-size: 14px;
    text-indent: 100px;
    text-align: justify;
}
.home-about img{
    width: 100%;
    height: 100%;
    padding: 10px 0;
    object-fit:cover;
}

#vazhipadudiv{
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin: 20px;
}

#vazhipadudiv h2{
  margin-bottom: 30px;
  padding: 10px;
  font-weight: bolder;
  color: #fff;
  background-color: #f88221;
  border-radius: 12px;
  width: fit-content;
  display: inline-flex;
}

#vazhipadudiv table tr, th, td{
  border: 2px solid #555;
}

#vazhipadudiv table tr th{
  color: #f88221;
  font-size: 18px;
}

#vazhipadudiv table tr td{
  color: #fff;
}

/*#vazhipadudiv table tbody tr:nth-child(odd)
{
  background-color: #04AA6D;
}
#vazhipadudiv table tbody tr:nth-child(even)
{
  background-color: darkkhaki;
}*/


#vazhipadudiv table tbody tr:hover{
  /*transform: rotateX(360deg);
  position: relative;
  transition: transform 1.5s;
  transform-style: preserve-3d;*/
  background-color: #f88221;
}

.directorboardmembers
{
  margin: 65px 0;
  text-align: center;
}

.directorboardmembers h2
{
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
  background-color: #f88221;
  padding: 10px;
  font-weight: bolder;
  width: fit-content;
  display: inline-flex;
  border-radius: 20px;
}


.member{
  margin-top: 25px;
  text-align: center;
  box-shadow: rgba(243, 242, 241, 0.35) 0px 5px 15px;
  padding: 10px 0;
  line-height: 30px;
}
.member h3, p{
  padding: 5px;
  margin: 0;
}

.member h3{
  margin-top: 10px;
  font-size: 22px;
}
.member p{
  font-size: 14px;
}
.memberImg{
  border-radius: 50%;
  width: 60%;
  margin: 5px;
  background-color: brown;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgba(234, 94, 13, 0.893) 0px 0px 0px 3px;
}

.member:hover{
  transform: rotateX(360deg);
  position: relative;
  transition: transform 1.5s;
  transform-style: preserve-3d;
}

#noticeboard{
  margin: 80px;
  text-align: center;
}

#noticeboard h2{
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
  background-color: #f88221;
  padding: 10px;
  font-weight: bolder;
  width: fit-content;
  display: inline-flex;
  border-radius: 20px;
}

#noticeboard .notices{
  margin-top: 10px;
  text-align: left;
  background-color: #555;
  border: 4px solid #f88221;
  padding: 20px;
}

#noticeboard .notice h4{
  font-size: 20px;
  font-weight: bold;
}

#noticeboard .notice p{
  font-size: 14px;
}

#noticeboard .notice .footer .fright{
  text-align: right;
  margin-right: 20px;
  margin-bottom: 30px;
}

#noticeboard .notice .footer .fleft{
  text-align: left;
  margin-left: 15px;
  margin-bottom: -20px;
}
#noticeboard .notice .footer .fright h5{
  font-size: 14px;
}

#noticeboard .notice .footer .fleft h5{
  font-size: 14px;
}


.latest-gallery{
  padding:95px 0px 70px;
}
.latest-gallery h1{
  font-size: 53px;
  color: #000;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}
.latest-gallery .single-item {
  padding-bottom: 30px;
}
.latest-gallery .single-item .img-box {
  position: relative;
  overflow: hidden;
}
.latest-gallery .single-item .img-box img {
  width: 100%;
  height: auto;
  border: 2px solid var(--orange);
}

.latest-gallery .single-item .title h5 {
  color: #222;
  padding: 25px 0 0;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition:.5s ease;
  transition: .5s ease;
}
.latest-gallery .single-item:hover .title h5 {
  color: #48c7ec;
  -webkit-transition:.5s ease;
  transition: .5s ease;
}

.latest-gallery .single-item .img-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(238, 125, 51, 0.55);
  text-align: center;
  opacity: 0;
  transition: all .3s ease;
}

.latest-gallery .single-item .img-box .overlay .social {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
.latest-gallery .single-item .img-box .overlay .inner {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
}
.latest-gallery .single-item .social a i:before {
  font-size: 30px;
  color: #fff;
  margin: 0px;
}
.latest-gallery .single-item .social h4 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
  text-transform: uppercase;
}

.latest-gallery .single-item .img-box .overlay .box {
  display: table;
  width: 100%;
  height: 100%;
}
.latest-gallery .single-item .img-box .overlay .box .content {
  display: table-cell;
  vertical-align: bottom;
}
.latest-gallery .single-item .img-box .overlay .top {
  text-align: center;
}
.latest-gallery .single-item .img-box .overlay .top ul {
  margin-bottom: 0;
  margin-bottom: 20%;
}
.latest-gallery .single-item .img-box .overlay .top li a {
  width: 45px;
  height: 45px;
  color: #fff;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  background: #222;
  display: block;
  border-radius: 50%;
  -webkit-transition:.4s ease;
  transition: .4s ease;
}
.latest-gallery .single-item .img-box .overlay .top li a:hover {
  background: #1f1f1f;
  color: #48c7ec;
}
.latest-gallery .single-item .img-box .overlay .bottom {
  padding: 10px 0px;
  padding-right: 0;
  text-align: center;
}
.latest-gallery .single-item .img-box .overlay .bottom .title h3 {
  margin: 0;
  color: #fff;
  font-family: "Roboto Slab", serif;
  line-height: 30px;
  font-size: 15px;
}
.latest-gallery .single-item:hover .img-box .overlay {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.addressandmail{
  margin-bottom: 30px;
}

.addressandmail .mailsection{
  background-color: #383535ab;
  padding : 30px 30px 15px 30px;
  border-radius: 20px;
  text-align: center;
}

.addressandmail .mailsection h2{
  margin-bottom: 20px;
  color: var(--orange);
}

.addressandmail .mailsection .btn{
  color: #fff;
  background-color: var(--orange);
  border: none;
  border-radius: 20px;
}

.addressandmail .mailsection input , .addressandmail .mailsection textarea
{
  margin-bottom: 20px;
  text-align: left;
  color: #000;
  text-transform: uppercase ;
}

.addressandmail .mailsection input::placeholder , .addressandmail .mailsection textarea::placeholder{
  color: var(--orange);
}

.addressandmail .getintouch{
  background-color: #383535ab;
  padding : 30px 30px 15px 30px;
  border-radius: 20px;
  text-align: center;
}

.addressandmail .getintouch h2{
  margin-bottom: 20px;
  color: var(--orange);
}

.addressandmail .getintouch img{
  width: auto;
  max-height: 200px;
  border: 4px solid var(--orange);
  border-radius: 10px;
}

.addressandmail .getintouch h4{
  margin-top: 18px;
  color: var(--orange);
}

.location{
  margin: 40px 0;
}

footer{
  height: 80px;
  background-color: var(--orange);
  padding: 10px;
}

footer p , footer a{
  text-align: center;
  color: #fff;
  text-decoration: none;
}

footer a:hover{
  color: #555;
}



/* Strat inner banner css*/

.inner-baner{
  background:url(../images/inner-banner.png);
}
.page-title{
  position:relative;
  text-align:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
}
.page-title:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.3);
}
.page-title h2{
  position:relative;
  font-size:45px;
  font-weight:700;
  color:#ffffff;
  padding:80px 0px 40px;
  text-transform:uppercase;
  text-align: left;
}
.page-title1 .bread-crumb{
  position:relative;
  display:inline-block;
  padding:9px 0px 6px;
  border-radius:50px;
  top:-63px;
  z-index:1;
  float: left;
  background-color:transparent;
}
.page-title .bread-crumb li{
  position:relative;
  display:inline-block;
  line-height:1em;
  margin-right:35px;
  color:#ffffff;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
}
.page-title .bread-crumb li:after{
  content:'\f101';
  position:absolute;
  right:-29px;
  top:-1px;
  font-weight:400;
  width:20px;
  text-align:center;
  line-height:1em;
  font-family: 'FontAwesome';
}
.page-title .bread-crumb li:last-child{
  margin-right:0px; 
  color: #FFF;  
}
.page-title .bread-crumb li:last-child:after{
  display:none;   
}
.page-title .bread-crumb li a{
  color:#ffffff;
  font-weight:700;
  text-transform:uppercase;
}
/* End Inner banner css*/
