/* ===== Contact Us Page ===== */

/* ===== Global Reset (IMPORTANT) ===== */
*{
   box-sizing: border-box;
}

html, body{
   margin: 0;
   padding: 0;
   width: 100%;
   overflow-x: hidden; /* prevents side scroll */
}

body{
   margin: 0;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
   background-color: #fafafa;
   color: #1f2933;
}

.contactPage{
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   padding-block: 60px;
}

/* Heading */
.contactPage .headingSec{
   width: 85%;
   text-align: center;
}

.contactPage .headingSec p{
   max-width: 700px;
   margin: 12px auto 0;
   opacity: 0.9;
}

/* Content */
.contactSec{
   width: 85%;
   display: flex;
   gap: 30px;
   margin-top: 45px;
}

/* Contact Card */
.contactCard{
   flex: 1;
   background: #ffffff;
   padding: 28px 24px;
   border-radius: 14px;
   box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.contactCard h3{
   margin-bottom: 14px;
   font-size: 1.5rem;
   text-align: center;
}

.contactCard p{
   margin: 8px 0;
   font-size: 0.95rem;
   line-height: 1.6;
}

.contactCard .note{
   margin-top: 14px;
   font-size: 0.9rem;
   opacity: 0.8;
}

/* Map Card */
.mapCard{
   flex: 1;
   background: #ffffff;
   border-radius: 14px;
   overflow: hidden;
   box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.mapCard iframe{
   width: 100%;
   height: 100%;
   min-height: 320px;
   border: 0;
}

/* Responsive */
@media (max-width: 900px){
   .contactSec{
      flex-direction: column;
   }
}

/* Div one starts ========================== */
.coverDiv{
   width: 100%;
   min-height: 100vh;
   display: flex;
   flex-direction: column;

}

.logoSec .logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain; /* fits without distortion */
}


.coverDiv .mainHeader{
   width: 100%;
   height: 80px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: rgba(0, 0, 0, 0.7);
   padding-inline: max(5%, 50px);
   padding-top: 10px;
   padding-top: 10px;
}

.coverDiv .mainHeader .logoSec{
   width: auto;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
}

.coverDiv .mainHeader .logoSec>i{
   font-size: xx-large;
   color: red;
   overflow: hidden;
}

.coverDiv .mainHeader .logoSec>span{
   font-family: Verdana, Geneva, Tahoma, sans-serif;
   font-weight: bold;
   color: white;
   padding-left: 5px;
   font-size: large;
}

.coverDiv .mainHeader .navItems{
   width: auto;
   height: auto;
   display: flex;
   align-items: center;
   justify-content: center;
}

.coverDiv .mainHeader .navItems>span{
   position: relative;
   width: auto;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
}

.coverDiv .mainHeader .navItems>span>a{
   color: white;
   text-decoration: none;
   padding: 10px 15px 10px;
   font-weight: bold;
}

.coverDiv .mainHeader .navItems>span>a::after{
   content: " ";
   width: 0%;
   height: 5%;
   background-color: red;
   position: absolute;
   bottom: 0;
   right: 0%;
   transition: 0.5s;
}

.coverDiv .mainHeader .navItems>span:hover>a::after{
   left: 0%;
   width: 95%;
}

.coverDiv .mainHeader .hamburgerIcon{
   display: none;
   width: auto;
   height: auto;
   color: white;
   overflow: hidden;
}

.coverDiv .mainHeader .hamburgerIcon>i{
   font-size: x-large;
}

.coverDiv .mainDiv{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: calc(100vh - 80px);
   background-color: rgba(0, 0, 0, 0.7);
   position: relative;
}

.coverDiv .mainDiv .mainSec{
   width: 80%;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   color: white;
   animation: topSlide 1s ease-out;
}

@keyframes topSlide {
   from{margin-top: -20%; opacity: 0;}
   to{margin-top: 0%; opacity: 1;}

   
}

.coverDiv .mainDiv .mainSec>h1{
   font-size: 70px;
   text-align: center;
}

.coverDiv .mainDiv .mainSec>p{
   width: 80%;
   font-size: 1.5rem;
   text-align: center;
   padding-block: 10px;
   font-weight: lighter;
   color: white;
}

.coverDiv .mainDiv .mainSec>a{
   text-decoration: none;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-weight: bold;
   position: relative;
   z-index: 2;
   color: white;
   padding: 10px 50px 10px;
   margin-top: 8px;
   text-decoration: none;
   color: white;
   border: 2px solid white;
}

.coverDiv .mainDiv .mainSec>a::before{
   content: " ";
   width: 0%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 50%;
   background-color: white;
   z-index: -1;
   transition: 0.5s;
}

.coverDiv .mainDiv .mainSec>a::after{
   content: " ";
   width: 0%;
   height: 100%;
   position: absolute;
   top: 0;
   right: 50%;
   background-color: white;
   z-index: -1;
   transition: 0.5s;
}

.coverDiv .mainDiv .mainSec>a:hover{
   color: black;
}

.coverDiv .mainDiv .mainSec>a:hover::before, .coverDiv .mainDiv .mainSec>a:hover::after{
   width: 50%;
}
/* Div one ends ========================== */
