*{
    margin:0;padding:0;box-sizing:border-box
    
}



body{
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


.lesson-timeline li {
  cursor: pointer;
  border-left: 4px solid #0d6efd;
  margin-left: 10px;
  padding-left: 15px;
}

/*cfcc*/
/*footer start*/
.lesson-timeline li:hover {
  background: #f8f9fa;
}

    .lv-footer {
  background: #062b7a;
  color: #ffffff;
  padding: 70px 0 30px;
  font-size: 14px;
}

.footer-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-subtitle {
  font-size: 14px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #dce6ff;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-text {
  color: #dce6ff;
  line-height: 1.6;
}

.app-buttons img {
  height: 40px;
  margin: 8px 8px 0 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.25s;
}

.social-icons a:hover {
  background: #ffffff;
  color: #062b7a;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
}



/*footer end*/



/*header start */


/* ========== HEADER ========== */
/* VISIBILITY HELPERS */
.desktop-only {
  display: block;
}

.site-header{
  position:sticky;
  top:0;
  background:#fff;
  z-index:1000;
  border-bottom:1px solid #e5e7eb;
}
.header-container{
  max-width:1300px;
  margin:auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.categories-btn .fa{
    font-size: 20px;
}
.fa-chevron-down{
    font-size: 14px;
}
/* LEFT */
.header-left{
  display:flex;
  align-items:center;
  gap: 70px;
}
.logo{
  font-weight:700;
  font-size:20px;
  text-decoration:none;
  color:#0f172a;
}

/* CATEGORIES */
.categories-wrapper{position:relative}
.categories-btn{
    font-weight: 800;
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  color:#0f172a;
  text-decoration:none;
}

/* CENTER */
.header-center{
    gap: 40px;
  flex:1;
  display:flex;
  justify-content:center;
}
.search-box{
  width:420px;
  display:flex;
  align-items:center;
  gap:8px;
  border:1px solid #d1d5db;
  border-radius:6px;
  padding:8px 12px;
}
.search-box input{
  border:none;
  outline:none;
  width:100%;
}

/* RIGHT */
.header-right{
  display:flex;
  align-items:center;
  gap:16px;
}
.btn-primary{
  background:#2563eb;
  color:#fff;
  padding:6px 14px;
  border-radius:6px;
  text-decoration:none;
}
.link-btn{color:#0f172a;text-decoration:none}

/* PROFILE */
.profile-dropdown{position:relative}
.profile-dropdown .dropdown{
  display:none;
  position:absolute;
  right:0;
  top:120%;
  width:180px;
  background:#fff;
  border-radius:8px;
  box-shadow:0 15px 30px rgba(0,0,0,.15);
}
.profile-dropdown .dropdown a{
  display:block;
  padding:10px 14px;
  color:#020617;
  text-decoration:none;
}
.profile-dropdown .dropdown a:hover{background:#f1f5f9}

/* ========== MEGA MENU ========== */
.mega-menu{
  display:none;
  position:absolute;
  top:130%;
  left: -64px;
  width:min(1100px,95vw);
  background:#fff;
  padding:24px;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}
.mega-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.mega-col h4{
      margin-bottom: 10px;
    font-weight: 700;
    font-size: 16px;
}
.mega-col a{
    font-size: 14px;
  display:block;
  padding:6px 0;
  text-decoration:none;
  color:#334155;
}

/* ========== HAMBURGER ========== */
.hamburger{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* ========== MOBILE MENU ========== */
.mobile-menu{
  position:fixed;
  top:60px;
  left:-100%;
  width:100%;
  height:calc(100vh - 60px);
  background:#fff;
  padding:20px;
  overflow-y:auto;
  transition:.3s;
  z-index:999;
}
.mobile-menu.active{left:0}

.mobile-menu a{
  display:block;
  padding:12px 0;
  border-bottom:1px solid #e5e7eb;
  text-decoration:none;
  color:#020617;
}
.mega-menu,
.profile-menu {
  transition: opacity .2s ease, transform .2s ease;
}

.profile-dropdown {
  position: relative;
}

.profile-btn {
    font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  color: #0f172a;
}

.profile-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 120%;
  width: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,.15);
  z-index: 1001;
}

.profile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
  color: #020617;
}

.profile-menu a:hover {
  background: #f1f5f9;
}

/* SEARCH + BUTTON WRAP */
.search-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTON */
.search-cta {
  line-height: 14px;
    background: #2563eb;
    color: #fff;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    height: 42px;
}

.search-cta:hover {
  background: #1e4fd6;
}

/*header end */

/*Home page css start*/

    /* HERO SECTION */
.hero-section {
  background: #f8fcff;
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #0b2c5d;
  margin-bottom: 30px;
}

.hero-content .highlight {
  color: #ff4d4f;
}

.hero-btn {
  background: #2f80ed;
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #1f6bd6;
  color: #fff;
}

/* IMAGE */
.hero-image img {
  max-width: 100%;
  height: auto;
}

/* STATS BAR */
.stats-bar {
  background: #0b2c5d;
  margin-top: 60px;
  padding: 30px 0;
}

.stat-item {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.stat-item img {
  width: 48px;
}

.stat-item p {
  margin: 0;
  text-align: left;
  font-size: 14px;
}

.stat-item strong {
  font-size: 18px;
  font-weight: 700;
}

/*category css*/
/* SECTION */
.popular-courses {
  background: #ffffff;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0b2c5d;
}

/* FILTERS */
.course-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid #2f80ed;
  background: transparent;
  color: #2f80ed;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #2f80ed;
  color: #fff;
}

/* CARD */
.popular-course-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  height: 100%;
  text-decoration: none;
  background: linear-gradient(135deg, #f4faff, #ffffff);
  border: 1px solid #dfeaf5;
  border-radius: 8px;
  transition: 0.3s ease;
}

.popular-course-card:hover {
  transform: translateY(-4px);
  border-color: #2f80ed;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* IMAGE */
.popular-course-thumb {
  min-width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.popular-course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.popular-course-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 6px;
  line-height: 1.4;
}

.course-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #2f80ed;
  background: #eaf2ff;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.popular-course-info p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/*live webinar css*/

/* SECTION */
.live-webinars {
  background: #fbfeff;
}

/* HEADER */
.webinar-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b2c5d;
}

.live-badge {
  background: red;
  color: #fff;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 6px;
}

.webinar-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1f3c88;
}

/* TAB */
.webinar-tab {
  border: none;
  background: transparent;
  color: #2f80ed;
  font-weight: 600;
  border-bottom: 2px solid #2f80ed;
  padding: 6px 14px;
}

/* CARD */
.webinar-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.webinar-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5eff8;
  border-radius: 10px;
  padding: 16px 20px;
  transition: 0.3s ease;
}

.webinar-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #2f80ed;
}

/* LEFT */
.webinar-left img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

/* MIDDLE */
.webinar-middle {
  flex: 1;
  padding: 0 20px;
}

.webinar-date {
  font-size: 12px;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}

.webinar-middle h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0b2c5d;
  margin: 0;
}

/* RIGHT */
.webinar-btn {
  border: 1px solid #2f80ed;
  padding: 8px 18px;
  border-radius: 6px;
  color: #2f80ed;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s ease;
}

.webinar-btn:hover {
  background: #2f80ed;
  color: #fff;
}

/*trainer css */
/* SECTION */
.trainers-section {
  background: #ffffff;
}

/* HEADING */
.top-label {
  font-size: 12px;
  font-weight: 700;
  color: #1f3c88;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b2c5d;
}

/* TRAINER CARD */
.trainer-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  background: #eaf2ff;
  padding: 6px;
  margin-bottom: 14px;
}

.trainer-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 4px;
}

.trainer-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* CTA BUTTON */
.trainer-btn {
  background: #2f80ed;
  color: #fff;
  padding: 12px 36px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.25s ease;
}

.trainer-btn:hover {
  background: #1f6bd6;
  color: #fff;
}


/*nsdc css*/
/* SECTION */
.nsdc-section {
  background: #ffffff;
}

/* IMAGE */
.certificate-wrap {
  background: #eaf2ff;
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
}

.certificate-wrap img {
  max-width: 100%;
  border-radius: 6px;
}

/* CONTENT */
.nsdc-content {
  padding-left: 20px;
}

.nsdc-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #1f3c88;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.nsdc-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b2c5d;
  line-height: 1.3;
  margin-bottom: 20px;
}

.nsdc-title span {
  color: #2f80ed;
}

/* LOGOS */
.nsdc-logos img {
  max-width: 300px;
  margin-bottom: 24px;
}

/* BUTTON */
.nsdc-btn {
  display: inline-block;
  background: #2f80ed;
  color: #fff;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.25s ease;
}

.nsdc-btn:hover {
  background: #1f6bd6;
  color: #fff;
}

/*dashboard css*/
/* SECTION */
.dashboard-preview {
  background: #f8fbff;
}

/* HEADING */
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0b2c5d;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 14px;
  color: #6b7280;
}

/* CARD */
.dashboard-card {
  background: #ffffff;
  border: 1px solid #e5eff8;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  border-color: #2f80ed;
}

/* IMAGE */
.dashboard-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* TEXT */
.dashboard-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 6px;
}

.dashboard-card p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/*how to learn css*/
/* SECTION */
.about-section {
  background: #ffffff;
}

/* TEXT */
.about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #1f3c88;
  margin-bottom: 10px;
}

.about-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b2c5d;
  line-height: 1.3;
  margin-bottom: 16px;
}

.about-text {
  font-size: 14px;
  color: #4b5563;
  max-width: 90%;
  margin-bottom: 24px;
}

/* WATCH BUTTON */
.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #2f80ed;
  cursor: pointer;
  padding: 0;
}

.play-icon {
  width: 44px;
  height: 44px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}



.about-image img {
  width: 100%;
  max-width: 360px;
}

/*vido modal css*/
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal.active {
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.video-box {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #000;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px;
  overflow: hidden;
}

.video-box iframe {
  width: 100%;
  height: 100%;
}

.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
 /*cta css*/
 /* CTA SECTION */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #1f3c88, #2f80ed);
}

/* BOX */
.cta-box {
  max-width: 760px;
  margin: auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 50px 30px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

/* TITLE */
.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

/* TEXT */
.cta-text {
  font-size: 16px;
  color: #e5ecff;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  color: #1f3c88;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/*home page css end */

/*About css start */



/* Banner */
.about-banner {
        background-image: url(https://www.learnvern.com/images/new-home-assets/web-about-banner.jpg);
background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 70vh;
    padding: 80px 0;
}

.about-content {
    /*display: flex;*/
    /*align-items: center;*/
    /*gap: 40px;*/
}


.about-left {
    flex: 1;
}

.about-left h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0b2b6b;
    margin-bottom: 30px;
}

/* Feature icons */
.about-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    max-width: 120px;
}

.feature img {
    width: 64px;
    height: 64px;
}

.feature p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #0b2b6b;
}

/* Right image */
.about-right {
    flex: 1;
    min-height: 360px;
    background: url('/mnt/data/963af78b-225e-4d9b-b36c-bcbfc91c3a8b.png') no-repeat center;
    background-size: cover;
    border-radius: 12px;
}

/* Stats bar */
.about-stats {
    background: #0b2b6b;
    padding: 35px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.stat img {
    width: 48px;
    height: 48px;
}

.stat p {
    margin: 0;
    font-size: 15px;
}

.stat strong {
    font-size: 18px;
}

  .about-s2 {
    padding: 70px 0;
    background-color: #ffffff;
}

/* Headings */
.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
}

.about-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #0b2b6b;
    margin: 15px 0;
}

/* Text */
.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    max-width: 900px;
}

/* Video */
.about-video {
 margin-top: 30px;
    position: relative;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.about-video img {
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Play Button */
.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    background: rgba(11, 43, 107, 0.9);
    border-radius: 50%;
}

.play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Info Blocks */
.about-info {
    margin-top: 60px;
}

.about-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.about-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

  .company-logo-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
  
}

.brand-heading p {
    font-size: 15px;
    color: #555;
    margin-bottom: 6px;
}

.brand-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

/* Slider wrapper */
.logo-slider {
    position: relative;
    margin-top: 35px;
    overflow: hidden;
}

/* Track */
.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

/* Individual logo */
.logo-track .logo {
    flex: 0 0 auto;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}

.logo img {
    max-width: 100%;
    max-height: 58px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/*About css end */

/*contact css start */
.contact-form .form-group {
    position: relative;
}

.contact-form .form-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

.contact-form .textarea-icon {
    top: 18px;
    transform: none;
}

.contact-form .form-control {
    padding-left: 40px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-form textarea.form-control {
    height: auto;
}

.btn-submit {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: #084298;
}

    
    /* ===============================
   CONTACT PAGE – GLOBAL
================================ */
.contact-page {
    background: #f6f8fc;
    color: #333;
}

/* ===============================
   BANNER
================================ */
.contact-banner {
    background: linear-gradient(120deg, #0b2b6b, #1746a2);
    padding: 90px 0 120px;
    text-align: center;
    color: #fff;
}

.contact-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-banner p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===============================
   MAIN CARD
================================ */
.contact-wrapper {
    margin-top: -90px;
    margin-bottom: 70px;
}

.contact-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* ===============================
   LEFT – CONTACT INFO
================================ */
.contact-info {
    background: #0b2b6b;
    color: #fff;
    padding: 50px;
    height: 100%;
}

.contact-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Contact Details */
.contact-details {
    list-style: none;
    padding: 0;
    margin: 35px 0 0;
}

.contact-details li {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
    align-items: flex-start;
}

.contact-details i {
    font-size: 20px;
    color: #fff;
    min-width: 24px;
    margin-top: 4px;
}

.contact-details strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
}

/* ===============================
   RIGHT – CONTACT FORM
================================ */
.contact-form {
    padding: 50px;
}

.contact-form h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

/* Form Group */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

/* Icons inside inputs */
.form-group i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 15px;
    color: #888;
    pointer-events: none;
}

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group textarea {
    padding-top: 16px;
    resize: none;
}

/* Textarea icon fix */
.textarea-group i {
    top: 18px;
    transform: none;
}

/* Focus state */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0b2b6b;
    box-shadow: 0 0 0 3px rgba(11, 43, 107, 0.1);
}

/* ===============================
   SUBMIT BUTTON
================================ */
.btn-submit {
    background: #0b2b6b;
    color: #fff;
    padding: 14px 36px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit i {
    font-size: 14px;
}

.btn-submit:hover {
    background: #1746a2;
    transform: translateY(-1px);
}

/* ===============================
   MAP
================================ */
.contact-map iframe {
    width: 100%;
    height: 360px;
    border: none;
}






/*contact css end */