.elementor-2 .elementor-element.elementor-element-45571e9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2 .elementor-element.elementor-element-dcc1286{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2 .elementor-element.elementor-element-0b46b5a > .elementor-widget-container{margin:30px 0px 0px 0px;}.elementor-2 .elementor-element.elementor-element-0b46b5a .elementor-heading-title{font-family:"Times New Roman", Sans-serif;}.elementor-2 .elementor-element.elementor-element-9e81092{padding:50px 0px 50px 0px;}.elementor-2 .elementor-element.elementor-element-e06cd6e > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:flex-end;align-items:flex-end;}.elementor-2 .elementor-element.elementor-element-b02a838 > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:flex-end;align-items:flex-end;}.elementor-2 .elementor-element.elementor-element-8b1e752{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2 .elementor-element.elementor-element-ac58c62{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-23px;--margin-bottom:-30px;--margin-left:0px;--margin-right:0px;}.elementor-2 .elementor-element.elementor-element-23c0952{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2 .elementor-element.elementor-element-807c172 > .elementor-widget-container{margin:0px 0px -33px 0px;}.elementor-2 .elementor-element.elementor-element-807c172{text-align:center;}.elementor-2 .elementor-element.elementor-element-807c172 .elementor-heading-title{font-family:"Times New Roman", Sans-serif;}.elementor-2 .elementor-element.elementor-element-4288412{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-28px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2 .elementor-element.elementor-element-f1f2128 > .elementor-widget-container{padding:0% 15% 0% 0%;}.elementor-2 .elementor-element.elementor-element-126d528{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a631097 *//* Main container */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Left column - Intro */
.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-intro h1 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0 0 5px 0;
}

.hero-intro h2 {
  font-size: 20px;
  font-weight: 500;
  color: #1e73be;
  margin: 0 0 20px 0;
}

.hero-highlight {
  border-left: 4px solid #1e73be;
  padding-left: 20px;
  margin: 20px 0;
  text-align: left;
}

.hero-highlight p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #1e73be, #1467b3);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 115, 190, 0.3);
}

.hero-button svg {
  margin-right: 10px;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(30, 115, 190, 0.4);
}

/* Right column - Bio cards */
.hero-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bio-card {
  background: linear-gradient(145deg, #ffffff, #f5f8fa);
  border-left: 4px solid #1e73be;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  padding: 20px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bio-card h3 {
  color: #1e73be;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.bio-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Color variations for cards */
.bio-card:nth-child(2) {
  border-left-color: #28a745;
}

.bio-card:nth-child(2) h3 {
  color: #28a745;
}

.bio-card:nth-child(3) {
  border-left-color: #e67e22;
}

.bio-card:nth-child(3) h3 {
  color: #e67e22;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-intro {
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero-photo {
    width: 150px;
    height: 150px;
  }
  
  .hero-intro h1 {
    font-size: 28px;
  }
  
  .hero-intro h2 {
    font-size: 18px;
  }
  
  .hero-highlight p {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-0b46b5a *//* Heading styling */
.skills-heading {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.skills-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0;
  position: relative;
  display: inline-block;
}

.skills-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e73be, #28a745);
  border-radius: 2px;
}

/* Optional decorative elements */
.skills-heading:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: #e0e0e0;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-9e81092 *//* Main container styling */
.education-section {
  background: linear-gradient(145deg, #ffffff, #f5f8fa);
  border-left: 4px solid #1e73be;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 30px 35px;
  position: relative;
  margin: 15px 0;
  overflow: hidden;
}

/* School name styling */
.education-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1e73be;
  position: relative;
  display: inline-block;
}

/* Degree program styling */
.education-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
  color: #333;
}

/* Grade/merit styling */
.education-section .merit {
  background: rgba(30, 115, 190, 0.1);
  color: #1e73be;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

/* Location and date styling */
.education-section .location-date {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  font-size: 15px;
  color: #666;
}

/* Module list header */
.education-section .module-header {
  font-weight: 600;
  margin-top: 20px;
  font-size: 18px;
  color: #444;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

/* Module list items */
.education-section ul.modules {
  columns: 2;
  column-gap: 30px;
  padding-left: 20px;
  margin-top: 15px;
}

.education-section ul.modules li {
  margin-bottom: 10px;
  break-inside: avoid;
  position: relative;
  padding-left: 5px;
}

/* Decorative element */
.education-section:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(30, 115, 190, 0.05);
  border-radius: 50%;
  z-index: 0;
}

/* Responsive fixes */
@media (max-width: 767px) {
  .education-section ul.modules {
    columns: 1;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-555a39e *//* CERTIFICATION CARD CSS */
/* Certification card styling */
.certification-card {
  display: flex;
  flex-direction: column;
  padding: 25px 30px;
}

/* Header with logo and title */
.certification-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.certification-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.certification-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certification-title h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.certification-title h4 {
  font-size: 18px;
  color: #555;
  margin: 0;
}

/* Certification details */
.certification-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.credential-id {
  font-size: 14px;
  color: #666;
  font-family: monospace;
  background: rgba(30, 115, 190, 0.05);
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

/* Tags */
.certification-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.certification-tag {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.certification-tag:before {
  content: "•";
  margin-right: 6px;
}

/* Certificate button */
.credential-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #1e73be, #1467b3);
  color: white !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(30, 115, 190, 0.3);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 5px;
}

.credential-button svg {
  margin-right: 8px;
}

.credential-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(30, 115, 190, 0.4);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .certification-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .certification-logo {
    margin-bottom: 15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c7c67bd *//* Custom divider styling */
.custom-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
  max-width: 700px;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(30,115,190,0.1), rgba(30,115,190,0.7));
  flex-grow: 1;
}

.divider-line:last-child {
  background: linear-gradient(90deg, rgba(30,115,190,0.7), rgba(30,115,190,0.1));
}

.divider-icon {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-icon svg {
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.custom-divider:hover .divider-icon svg {
  transform: rotate(180deg);
}/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-807c172 *//* Heading styling */
.skills-heading {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.skills-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0;
  position: relative;
  display: inline-block;
}

.skills-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e73be, #28a745);
  border-radius: 2px;
}

/* Optional decorative elements */
.skills-heading:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: #e0e0e0;
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-f1f2128 *//* Main container for skills section */
.skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 20px 0;
}

/* Individual skill cards */
.skill-card {
  background: linear-gradient(145deg, #ffffff, #f5f8fa);
  border-left: 4px solid #1e73be;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 25px 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Card headers */
.skill-card h3 {
  color: #1e73be;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

/* Skill descriptions */
.skill-description {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Skill list items */
.skill-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.skill-item {
  display: flex;
  align-items: flex-start;
}

.skill-icon {
  color: #1e73be;
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.skill-text {
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}

/* Software experience section */
.software-section {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
  border-left: 4px solid #28a745;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 20px 30px;
  margin-top: 10px;
}

.software-section h3 {
  color: #28a745;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.software-list {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .skills-container {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-0d7f096 *//* Contact section styling */
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Intro text */
.contact-intro {
  background: linear-gradient(145deg, #ffffff, #f5f8fa);
  border-left: 4px solid #1e73be;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 25px 30px;
  margin-bottom: 30px;
}

.contact-intro p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Email card */
.contact-card {
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 25px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  background: rgba(30, 115, 190, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
}

.contact-info {
  flex-grow: 1;
}

.contact-info h3 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.email-link {
  color: #1e73be;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.email-link:hover {
  color: #28a745;
  text-decoration: underline;
}

/* Social links section */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}

.social-link:hover {
  color: #1e73be;
}

.social-link.linkedin:hover {
  color: #0077b5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .email-link {
    font-size: 18px;
  }
}/* End custom CSS */