﻿/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#1e293b;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #7f1d1d, #d97706);
  display: flex;
  flex-direction: column;
}

/* =========================
   NAVBAR
========================= */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 5%;
    background:#001845;
    box-shadow:0 2px 15px rgba(0,0,0,.15);
}

body{
    padding-top:90px;
}

/* Logo */
.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links .active{
    color:#38bdf8;
}
.nav-links a.active {
  color: #4cc9ff;
}

/* Enroll button */
.btn-nav {
    background: #2f6bff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover{
    background:#1d4ed8;
}

/* =========================
   HERO CAROUSEL
========================= */

.carousel{
    position:relative;
    width:100%;
    height:80vh;
    margin-top: 15px;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:all .8s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  flex: 1;
  max-width: 900px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* Heading */
.hero-content h1,
.page-hero .hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    color: #740ceb;
    margin-bottom: 22px;
    line-height: 1.2;
}

.hero-content h1 span,
.page-hero .hero-content h1 span {
    display: block;
    color: #141414;
}

/* Paragraph */
.hero-content p,
.page-hero .hero-content p {
    font-size: 22px;
    color: #e0ba13;
    max-width: 800px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* CTA Button */
.btn-primary {
  background: #2f6bff;
  color: #fff;
  padding: 14px 38px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

/* =========================
   SECTIONS
========================= */

/* ================= SECTIONS ================= */
.section {
  padding: 80px 10%;
}

.dark-section {
  background: #0b1f3f;
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
}
.section-title p{
    color:#64748b;
}

/* =========================
   COURSES
========================= */

.course-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.course-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.course-card:hover{
    transform:translateY(-10px);
}

.course-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.course-card h3{
    padding:20px 20px 10px;
}

.course-card p{
    padding:0 20px 20px;
}

.course-card a{
    display:block;
    background:#2563eb;
    color:white;
    text-align:center;
    padding:12px;
}

/* =========================
   DARK SECTION
========================= */

.dark-section{
    background:#0f172a;
}

.dark-section .section-title h2{
    color:white;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature-box{
    background:#1e293b;
    color:white;
    padding:35px;
    border-radius:15px;
    text-align:center;
}

.feature-box h3{
    margin-bottom:15px;
}

/* =========================
   PROJECTS
========================= */

.project-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.project-image img{
    border-radius:20px;
}

.project-content h3{
    margin-bottom:20px;
    font-size:30px;
}

.project-content ul li{
    margin-bottom:15px;
    position:relative;
    padding-left:25px;
}

.project-content ul li::before{
    content:"✓";
    color:#2563eb;
    position:absolute;
    left:0;
}

/* =========================
   PARTNERS
========================= */

.partner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:30px;
}

.partner-card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.partner-card img{
    max-height:80px;
    margin:auto;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    background:#f1f5f9;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.testimonial-card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card h4{
    margin-top:15px;
    color:#2563eb;
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    text-align:center;
    color:white;
    padding:100px 20px;
}

.cta-section h2{
    font-size:48px;
    margin-bottom:15px;
}

.cta-section p{
    margin-bottom:30px;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#020617;
    color:#cbd5e1;
    padding-top:70px;
}

.footer-grid{
    width:90%;
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-logo{
    width:180px;
    margin-bottom:15px;
}

.footer h3{
    color:white;
    margin-bottom:20px;
}

.footer ul li{
    margin-bottom:10px;
}

.footer a{
    color:#cbd5e1;
}

.footer a:hover{
    color:#38bdf8;
}

.footer p{
    margin-bottom:10px;
}

.copyright{
    text-align:center;
    border-top:1px solid #1e293b;
    margin-top:50px;
    padding:25px;
    color:#94a3b8;
}

.project-wrapper ul{
    padding-left:20px;
}

.project-wrapper ul li{
    margin-bottom:12px;
}
/* ===========================
   INNER PAGE HERO
=========================== */

.page-hero .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */
    text-align: center;
    padding: 0 20px;
}
.page-hero .hero-content h1 {
    max-width: 900px;
    margin-bottom: 20px;
}

.page-hero .hero-content p {
    max-width: 800px;
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.contact-form textarea{
    height:150px;
}

.contact-info-item{
    margin-bottom:20px;
}

.contact-info-item h4{
    color:#2563eb;
    margin-bottom:8px;
}

.map-container{
    margin-top:50px;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ===========================
   WHATSAPP BUTTON
=========================== */
.whatsapp-icon {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 50px;      /* Smaller size */
    height: 50px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.whatsapp-icon:hover {
    background: #1da851;
}
/* ===========================
   PARTNER LOGOS
=========================== */

.partner-card img{
    width:120px;
    height:80px;
    object-fit:contain;
    margin:auto;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 480px) {

    .hero-content h1,
    .page-hero .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p,
    .page-hero .hero-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-nav {
        padding: 12px 20px;
    }
}
/* Hamburger Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .navbar {
        width: 95%;
        margin: 15px auto;
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        border-radius: 20px;
    }

    .logo img {
        height: 60px;
        width: auto;
    }

    .menu-toggle {
        display: block;
        font-size: 32px;
    }

    .nav-links,
    .btn-nav {
        display: none;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 25px;
        text-align: center;
    }

    .nav-links a {
        font-size: 20px;
    }

    .btn-nav.active {
        display: block;
        width: 200px;
        margin: 25px auto 0;
        text-align: center;
    }

    .hero-content h1,
    .page-hero .hero-content h1 {
        font-size: 42px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p,
    .page-hero .hero-content p {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .project-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .hero-content {
    padding: 60px 20px 40px;
}

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #1e293b;
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-box:hover {
    transform: translateY(-10px);
    background: #233552;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-box p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 16px;
}
.testimonials {
    background: #f8fafc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.testimonial-author h4 {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
}

.testimonial-author span {
    color: #64748b;
    font-size: 14px;
}

.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #0d3b66;
    position: relative;
    display: inline-block;
}

.project-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.project-image {
    flex: 1;
}

.project-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.project-content {
    flex: 1;
}

.project-content h3 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 20px;
}

.project-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.course-features li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .project-content h3 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .course-features {
        text-align: left;
        display: inline-block;
    }
}

.dark-section {
    background: #0d3b66;
    color: #ffffff;
}

.dark-section .section-title h2 {
    color: #ffffff;
}

.dark-section .project-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.dark-section .project-content {
    flex: 1;
}

.dark-section .project-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.dark-section .project-content p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.placement-list {
    list-style: none;
    padding: 0;
}

.placement-list li {
    margin-bottom: 15px;
    font-size: 17px;
    color: #ffffff;
}

.project-image {
    flex: 1;
}

.project-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dark-section .project-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .dark-section .project-content h3 {
        font-size: 28px;
    }

    .placement-list {
        text-align: left;
        display: inline-block;
    }
}

.dark-section {
    background: #0d3b66;
    color: #ffffff;
}

.dark-section .section-title h2 {
    color: #ffffff;
}

.project-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.placement-content {
    flex: 1;
}

.placement-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.placement-content p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.placement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.placement-list li {
    margin-bottom: 15px;
    font-size: 16px;
}

.placement-image {
    flex: 1;
}

.placement-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .placement-list {
        text-align: left;
        display: inline-block;
    }

    .placement-content h3 {
        font-size: 28px;
    }
}

.project-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.project-image,
.project-content {
    flex: 1;
}

.project-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.project-content h3 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 20px;
}

.project-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-highlights li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .project-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .project-content h3 {
        font-size: 28px;
    }

    .course-highlights {
        text-align: left;
        display: inline-block;
    }
}

.project-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.project-image,
.project-content {
    flex: 1;
}

.project-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.project-content h3 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 20px;
}

.project-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-highlights li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .project-content h3 {
        font-size: 28px;
    }

    .course-highlights {
        text-align: left;
        display: inline-block;
    }
}

.placement-section .project-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.placement-section .project-content,
.placement-section .project-image {
    flex: 1;
}

.placement-section .project-content h3 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 20px;
}

.placement-section .project-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.placement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.placement-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.placement-section .project-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .placement-section .project-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .placement-section .project-content h3 {
        font-size: 28px;
    }

    .placement-list {
        text-align: left;
        display: inline-block;
    }
}

.project-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.project-content,
.project-image {
    flex: 1;
}

.project-content h3 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 20px;
}

.project-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.placement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.placement-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.project-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .project-content h3 {
        font-size: 28px;
    }

    .placement-list {
        text-align: left;
        display: inline-block;
    }
}
.contact-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
}

.dark-section {
    background: #0d3b66;
    color: #ffffff;
}

.dark-section .section-title h2 {
    color: #ffffff;
}

.dark-section .project-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.dark-section .project-content {
    flex: 1;
}

.dark-section .project-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.dark-section .project-content p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.placement-list {
    list-style: none;
    padding: 0;
}

.placement-list li {
    margin-bottom: 15px;
    font-size: 17px;
    color: #ffffff;
}

.project-image {
    flex: 1;
}

.project-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dark-section .project-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .dark-section .project-content h3 {
        font-size: 28px;
    }

    .placement-list {
        text-align: left;
        display: inline-block;
    }
}

/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px; /* Change to left: 20px; if needed */
    z-index: 999;
    border: none;
    outline: none;
    background-color: #0d6efd;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

#scrollTopBtn:hover {
    background-color: #0b5ed7;
    transform: translateY(-3px);
}

/* Tablet featured courses*/
@media (max-width: 992px) {
    .course-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile featured courses*/
@media (max-width: 768px) {
    .course-grid{
        grid-template-columns: 1fr;
    }
}

.social-links{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:10px;
}

.social-links a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.social-links a i{
    margin-right:8px;
    font-size:18px;
}

.social-links a:hover{
    color:#00c6ff;
}   

/* CTA FORM */

#contactForm{
    max-width:1100px;
    margin:40px auto 0;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

#contactForm input,
#contactForm select{
    width:260px;
    height:55px;
    padding:0 18px;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-family:'Inter',sans-serif;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    outline:none;
    transition:.3s;
}

#contactForm input:focus,
#contactForm select:focus{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.checkbox-row{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:5px;
}

.checkbox-row label{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:16px;
    font-weight:500;
}

.checkbox-row input{
    width:18px !important;
    height:18px !important;
}

#contactForm .btn-primary{
    width:220px;
    height:60px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    margin-top:10px;
}

/* Mobile */

@media(max-width:768px){

    #contactForm{
        flex-direction:column;
        align-items:center;
    }

    #contactForm input,
    #contactForm select{
        width:100%;
        max-width:350px;
    }

    #contactForm .btn-primary{
        width:220px;
    }
}