/* GENERAL STYLES */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  
   
}

/* NAVBAR */
.navbar {
    background-color: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 2rem;
}

.navbar-brand {
    color: #3B82F6 !important;
    font-weight: 600;
    font-size: 1.4rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00796B !important;
}

.dropdown-toggle::after {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* MEGA DROPDOWN MENU */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-width: 600px;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: flex;
    opacity: 1;
}

.mega-menu {
    display: flex;
    background-color: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
}

.menu-left {
    width: 40%;
    background-color: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding: 1rem;
}

.menu-right {
    width: 60%;
    background-color: #fff;
    padding: 1rem 1.5rem;
}

.menu-left button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 0.7rem 1rem;
    font-weight: 500;
    color: #333;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.menu-left button:hover,
.menu-left button.active {
    background-color: #E0F2F1;
    color: #00796B;
}

.menu-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-right li {
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    color: #333;
    cursor: pointer;
}

.menu-right li:hover {
    background-color: #3B82F6;
    color: white;
    text-decoration: none;
}

/* BUTTONS */
.btn-login {
    background-color: #3B82F6;
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #2563EB;
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

/* HERO SECTION */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero1,
.hero2,
.hero3,
.hero4 {
    font-size: 20px;
}

.hero2,
.hero3,
.hero4 {
    margin-top: -15px;
}

/* HEADERS */
.header1 {
    font-size: 70px;
    color: black;
}

.header2 {
    font-size: 70px;
    color: blueviolet;
    margin-top: -40px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.header3 {
    font-size: 70px;
    color: black;
    margin-top: -50px;
}

/* SPECIAL STYLES */
.svg1 {
    position: relative;
    top: -30px;
    left: -10px;
}

.missionpara1,
.missionpara2,
.missionpara3,
.missionpara4 {
    font-size: 17px;
}

.missionpara2,
.missionpara3,
.missionpara4 {
    margin-top: -15px;
}

.whatus {
    font-size: 50px;
}

.psyche {
    color: blueviolet;
}

/* CARDS */
.card {
    transition: all 0.4s ease-out;
    border-radius: 15px;
    overflow: hidden;
}

.card1:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#features .card1 {
    width: 16rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background: #fff;
}

#features .card1:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* TEXT COLORS AND BADGES */
.workscolor,
.keycolor {
    color: blueviolet;
}

.textbadge {
    color: black;
    background-color: #dbd384;
    border-radius: 20px;
}

/* OTHER ELEMENTS */
.phoneback {
    border: 2px solid black;
}

.videosetting {
    width: 180px;
    height: 400px;
    border-radius: 20px;
    z-index: 2;
    object-fit: cover;
}

.comsize1 {
    font-size: 35px;
}

.gradient-text {
    background: linear-gradient(45deg, #FF3399, #C700FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.awesome-btn {
    background: linear-gradient(45deg, #FF3399, #C700FF);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.awesome-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(199, 0, 255, 0.4);
}

/* GUIDELINES CARD */
.guideline-card {
    padding: 8px 14px !important;
    margin-bottom: 8px !important;
    border-radius: 6px;
}

.guideline-card h5 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}
.container{
    padding: 0px;
   
}
.offer_section{
    margin-top: 2rem;
}